vote up 0 vote down star

I can't seem to find any decent info about this on the web. Any advice?

flag

3 Answers

vote up 3 vote down

I would use the DOM API that has been part of the core since 5. For an XML string $xml, you can build a DOM object with

$dom = new DOMDocument();
$dom->loadXML($xml);

Manipulate it with the rest of the DOM API, defined at http://uk.php.net/DOM

link|flag
vote up 0 vote down

And when you need to inject it back into some other DOM (like your HTML page) you can export it again using the $dom->saveXML() method. The problem however is that it also exports an xml header (it's even worse for the saveHTML version). To get rid of that use this:

$xml = $dom->saveXML();
$xml = substr( $xml, strlen( "<?xml version=\"1.0\"?>" ) );
link|flag
vote up 0 vote down

If the input is HTML, use the loadHTML method. Be ware that the input has to be valid code, so you might want to pipe it through html tidy first.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.