Re: SimpleXML & libxml options (XInclude)
- From: rrichards@xxxxxxxxxxxxxxxx (Rob)
- Date: Wed, 28 Feb 2007 14:40:15 -0500
Ben Roberts wrote:
I'm trying to get the SimpleXML extension to read an XML file and process the XInclude statements within the XML file.
The SimpleXML docs state that libxml options may be specified using the predefined constants that are available when PHP is compiled with libxml support (as it is when you use SimpleXML).
http://uk2.php.net/manual/en/function.simplexml-element-construct.php
LIBMLXML_XINLCUDE currently only works with XMLReader.
You would need to import your doc to DOM and then processes the xinclude:
$xml_file = './master.xml';
$xml = new SimpleXMLElement($xml_file, 0, true);
$dom = dom_import_simplexml($xml);
$dom->ownerDocument->xinclude();
print_r($xml);
Rob
.
- Follow-Ups:
- Re: [PHP] Re: SimpleXML & libxml options (XInclude)
- From: Ben Roberts
- Re: [PHP] Re: SimpleXML & libxml options (XInclude)
- References:
- SimpleXML & libxml options (XInclude)
- From: Ben Roberts
- SimpleXML & libxml options (XInclude)
- Prev by Date: Re: [PHP] echo text - anti-spam-spider measure
- Next by Date: Re: [PHP] FTP issues
- Previous by thread: SimpleXML & libxml options (XInclude)
- Next by thread: Re: [PHP] Re: SimpleXML & libxml options (XInclude)
- Index(es):