Voting

: min(five, five)?
(Example: nine)

The Note You're Voting On

nbijnens at servs dot eu
17 years ago
Please note that not all LIBXML options are supported with the options argument.

For instance LIBXML_XINCLUDE does not work. But there is however a work around:

<?php
$xml
= new DOMDocument();
$xml->loadXML ($XMLString);

$xml->xinclude();
$xml = simplexml_import_dom($xml);

?>

<< Back to user notes page

To Top