From 0f2fb190c11f74f70752889df656f5bf98279b27 Mon Sep 17 00:00:00 2001 From: Mehdi Achour Date: Sat, 7 Feb 2004 13:18:11 +0000 Subject: [PATCH] this function doesn't exists # thanks Davey git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@150682 c90b9560-bf6c-de11-be94-00142212c4b1 --- .../functions/simplexml-load-dom.xml | 74 ------------------- 1 file changed, 74 deletions(-) delete mode 100644 reference/simplexml/functions/simplexml-load-dom.xml diff --git a/reference/simplexml/functions/simplexml-load-dom.xml b/reference/simplexml/functions/simplexml-load-dom.xml deleted file mode 100644 index 8c136d4020..0000000000 --- a/reference/simplexml/functions/simplexml-load-dom.xml +++ /dev/null @@ -1,74 +0,0 @@ - - - - - simplexml_load_dom - - Get a simplexml_element object from a - DOM node. - - - - Description - - object simplexml_elementsimplexml_load_dom - domNodenode - - - - This function takes a node of a DOM - document and makes it into a SimpleXML node. This new object can - then be used as a native SimpleXML element. If any errors occur, - it returns &false;. - - - - Import DOM - -loadXML('blah'); -if (!$dom) { - echo 'Error while parsing the document'; - exit; -} - -$s = simplexml_import_dom($dom); - -echo $s->book[0]->title; -?> -]]> - - - This code should output: - - - - - - - - -