ID: 14500 Updated by: mfischer Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Bug Type: DOM XML related Operating System: Slackware 8.0 PHP Version: 4.1.0 New Comment:
The interface has changed, the property is now named 'tagname'. print_r($root) is your friend if you can't find what you're searching for (and the source of course). Closing. Previous Comments: ------------------------------------------------------------------------ [2001-12-13 18:55:11] [EMAIL PROTECTED] I've compiled PHP-4.1.0 with libxml2-2.4.2 on linux machine with that options: /configure --with-apache=../apache_1.3.22 --enable-trans-sid --with-mysql=/mysql --disable-magic-quotes --with-dom --with-qtdom --with-zlib --with-png --with-ttf --enable-safe-mode --enable-track-vars --with-xml When I trie to use any domxml functions (below a part of php code taken from manual) I get error in my php_error_log like this: "Undefined property: name in example.php" "Undefined property: name in example.php" // data file $str = "<?xml version=\"1.0\"?><me><name>Joe Cool</name><age>24</age><sex>male</sex></me>"; // create a document object $dom = xmldoc($str); // get reference to root node $root = $dom->root(); // get name of node - "me" echo $root->name; // get children of node, as array $children = $root->children(); I checked the same script with older version of php (4.0.6)and libxml2 (2.2.3) and it works. Any ideas what I do wrong? Agnieszka Kukalowicz ------------------------------------------------------------------------ Edit this bug report at http://bugs.php.net/?id=14500&edit=1 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]