I believe if you are missing that function xml_parser_create() it will trigger a fatal error:
Fatal error: Call to undefined function: xml_parser_create()
If you have access to PHP or Apache error logs, the error should be logged.
You can test for the existence of that function on the server by creating this file on the server, then accessing it in a browser or from a command line:
<?php
// text for existence of a function
if (function_exists('xml_parser_create')) {
echo "xml_parser_create function exists\n";
}
else {
echo "xml_parser_create function DOES NOT exist\n";
}
?>
Posted 13 years ago on Thursday January 27, 2011 |
Permalink