double initialization of apache 1.3 was causing problems here.
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? 2004, PHP 5 Release Candidate 1
+- Fixed start-up problem if both SPL and SimpleXML were enabled. The double
+ initialization of apache 1.3 was causing problems here. (Marcus, Derick)
12 Feb 2004, PHP 5 Beta 4
- Changed exceptions so that they must now inherit from the built-in Exception
"simplexml",
simplexml_functions,
PHP_MINIT(simplexml),
- NULL,
+ PHP_MSHUTDOWN(simplexml),
NULL,
NULL,
PHP_MINFO(simplexml),
}
/* }}} */
+/* {{{ PHP_MSHUTDOWN_FUNCTION(simplexml)
+ */
+PHP_MSHUTDOWN_FUNCTION(simplexml)
+{
+ sxe_class_entry = NULL;
+ return SUCCESS;
+}
+/* }}} */
/* {{{ PHP_MINFO_FUNCTION(simplexml)
*/
PHP_MINFO_FUNCTION(simplexml)