s before domxml, it breaks.
123";
$doc = xmldoc($xml);
print_r(domxml_dumpmem($doc));
?>
outputs:
PHP Version 4.1.2
Warning: xmldoc() unsupported node type: 0
in /home/darrin/projects/exempla/test_xml.php on line
9
Warning: xmldoc() cannot create required DOM object
Version 4.1.2
123
as expected.
However:
by loading the php_gtk extensions before domxml, it breaks.
123";
$doc = xmldoc($xml);
print_r(domxml_dumpmem($doc));
?>
outputs:
PHP Version 4.1.2
Warning: xmldoc() unsupported node type: 0
in /home/darrin/projects/exempla
test.php
produces:
PHP Version 4.1.2
123
as expected.
However:
by loading the php_gtk extensions before domxml, it breaks.
123";
$doc = xmldoc($xml);
print_r(domxml_dumpmem($doc));
?>
outputs:
PHP Version 4.1.2
Warning: xmldoc() unsupported node type: 0
in /home