我的文档的head
中有很多数据,但我想添加更多数据。那么如何使用PHP::DOMDocument?
<head>
标记的内容
我有以下代码:
$dom = new DOMDocument('1.0', 'UTF-8');
@$dom->loadHTML($page);
$head = $dom->getElementsByTagName('head');
$keywords = new DOMElement('meta');
keywords->setAttribute('name', 'keywords');
$keywords->setAttribute('content', $page_def['keywords']);
$head->appendChild($keywords);
$description = new DOMElement('meta');
$description->setAttribute('name', 'description');
$description->setAttribute('content', $page_def['description']);
$head->appendChild($description);
$page = $dom->saveHTML();
page::dump($page);return;
但是我收到一个错误:调用未定义的方法DOMText :: setAttribute()
修改 我看到很难使用PHP:DOMDocument。在这种情况下,我使用了以下代码:
// Add the small meta data set to the header
$page = utility::replaceStringBetween('<head>', '</head>', $header . $headers, $page);
if (utility::getReplacementCount() == 0)
{
$error = "During page write: The head tags could not be modified within your page";
if (settings::getConfig('context') == 'production')
{
if (settings::getConfig('log_enabled') == 'true')
{
dblog::insert(user::getId(), $error, 'error');
}
}
// So the live pages will display correctly, unset the merge mode since the process which unsets it will fail to execute
if (isset($_SESSION['merge_mode'])) unset($_SESSION['merge_mode']);
print $error;
return;
}
/**
* Replace the value between two other values in a string
*
* @param string start delimeter
* @param string end delimeter
* @param string replacement
* @param string original source
* @param int limit replacement count
* @return string
*/
public static function replaceStringBetween($start, $end, $new, $source, $limit = 1)
{
$result = preg_replace('#('.preg_quote($start) . ')(.*)('.preg_quote($end)
. ')#is', '$1' . $new . '$3', $source, $limit, $count);
if ($count > 0)
{
self::$replacement_count++;
return $result;
}
$result = preg_replace ("#{$start}(.*){$end}#is", $new, $source, $limit, $count);
if ($count > 0)
{
self::$replacement_count++;
return $result;
}
return $source;
}
答案 0 :(得分:1)
尝试使用GetElementsByTagName查找<head>
标记,然后appendChild添加更多内容。 。 。东西。
或者,您可以修改DOMNode->$nodeValue
。
答案 1 :(得分:1)
setAttribute()
不适用于DOMText
个节点。
试试这个:
$keywords = $dom->createElement('meta');
答案 2 :(得分:0)
但是我收到一个错误:调用undefined 方法DOMText :: setAttribute()
这是因为DOMText类中没有方法setAttribute
。 DOMElement中有一个。