Top "Domdocument" questions

DOMDocument refers to a class encapsulating the DOM (Document Object Model).

Can I get siblings with PHP's DOMDocument?

I have gotten some h3 references in PHP's DOMDocument. $dom = new DOMDocument(); $dom->loadHtml($content); $h3s = $dom->…

php html domdocument
Proper character encoding to display "”"?

I'm having some nasty character encoding problems that I just can't figure out. Essentially, I'm screen scraping some HTML off …

php utf-8 character-encoding screen-scraping domdocument
Cakephp Class 'DOMDocument' not found

I tried to implement rss feed following this simple explanation from cake book http://book.cakephp.org/2.0/en/core-libraries/helpers/…

cakephp domdocument
CakePHP Xml utility library triggers DOMDocument warning

I'm generating XML in a view with CakePHP's Xml core library: $xml = Xml::build($data, array('return' => 'domdocument')); echo $…

php xml cakephp domdocument cakephp-2.2
loadHTML LIBXML_HTML_NOIMPLIED on an html fragment generates incorrect tags

Using the LIBXML_HTML_NOIMPLIED flag with an html fragment generates incorrect tags: $str = '<p>Lorem ipsum …

php html domdocument