Re: [PHP-DEV] Problems and questions with all the zend changes

2004-02-13 Thread Rob Richards
Damn it went before I finished :( class Test { function __construct() { print simplexml_element::asXML(); // crashes as simpleXML is not expecting this is valid. } } $a = new Test(); As I was saying: function asXML is defined as: SXE_ME(asXML, NULL, ZEND_ACC_PUBLIC) so it

[PHP-DEV] Problems and questions with all the zend changes

2004-02-13 Thread Rob Richards
I started running through dom and have now run into a lot of issues I need to get resolved. Not sure if they are problems with the extension or engine bugs. Here is what I am running into. Can no longer call static methods: i.e. DomDocument:loadXML() - results in Non-static method error (thi