简体   繁体   中英

Adding style tags to head with PHP DOMDocument

I want to create and add a set of <style> tags to the head tags of an HTML document.

I know I can start out like this:

$url_contents = file_get_contents('http://example.com');
$dom = new DOMDocument;
$dom->loadHTML($url_contents);

$new_elm = $dom->createElement('style', 'css goes here');
$elm_type_attr = $dom->createAttribute('type');
$elm_type_attr->value = 'text/css';
$new_elm->appendChild($elm_type_attr);

Now, I also know that I can add the new style tags to the HTML like this:

$dom->appendChild($ss_elm);
$dom->saveHTML();

However, this would create the following scenario:

<html>
<!--Lots of HTML here-->
</html><style type="text/css">css goes here</style>

The above is essentially pointless; the CSS is not parsed and just sits there.

I found this solution online (obviously didn't work):

$head = $dom->getElementsByTagName('head');
$head->appendChild($new_elm);
$dom->saveHTML();

Thanks for the help!!

EDIT:

Is it possible?

$head = $dom->getElementsByTagName('head');

Return a DOMNodeList. I think it will be better to get the first element like this

 $head = $dom->getElementsByTagName('head')->item(0);

So $head will be a DOMNode object. So you can use the appendChild method.

getElementsByTagName返回一个节点数组,所以可能尝试

 $head->[0]->appendChild($new_elm);

This is the solution that worked for me

// Create new <style> tag containing given CSS
$new_elm = $dom->createElement('style', 'css goes here');
$new_elm->setAttribute('type', 'text/css');

// Inject the new <style> Tag in the document head
$head = $dom->getElementsByTagName('head')->item(0);
$head->appendChild($new_elm);

You can also add this line at the end to have a clean indentation

// Add a line break between </style> and </head> (optional)
$head->insertBefore($dom->createTextNode("\n"));

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM