From 3415d5f66c06b41564bd5243c4cc8a0c89ec0d5a Mon Sep 17 00:00:00 2001 From: Ken Date: Sun, 18 Jul 2004 16:57:43 +0000 Subject: [PATCH] simplexml_element renamed to SimpleXMLElement. # thanks, tk AT bytecrash DOT net git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@163571 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/simplexml/functions/simplexml-element-asXML.xml | 6 +++--- .../simplexml/functions/simplexml-element-attributes.xml | 6 +++--- .../simplexml/functions/simplexml-element-children.xml | 6 +++--- reference/simplexml/functions/simplexml-element-xpath.xml | 8 ++++---- reference/simplexml/functions/simplexml-import-dom.xml | 6 +++--- reference/simplexml/functions/simplexml-load-file.xml | 8 ++++---- reference/simplexml/functions/simplexml-load-string.xml | 6 +++--- 7 files changed, 23 insertions(+), 23 deletions(-) diff --git a/reference/simplexml/functions/simplexml-element-asXML.xml b/reference/simplexml/functions/simplexml-element-asXML.xml index 4fa62c0b94..6cbef4a667 100644 --- a/reference/simplexml/functions/simplexml-element-asXML.xml +++ b/reference/simplexml/functions/simplexml-element-asXML.xml @@ -1,8 +1,8 @@ - + - simplexml_element->asXML + SimpleXMLElement->asXML Return a well-formed XML string based on SimpleXML element. @@ -10,7 +10,7 @@ Description - stringsimplexml_element->asXML + stringSimpleXMLElement->asXML diff --git a/reference/simplexml/functions/simplexml-element-attributes.xml b/reference/simplexml/functions/simplexml-element-attributes.xml index ac56ab9077..c6c55d8751 100644 --- a/reference/simplexml/functions/simplexml-element-attributes.xml +++ b/reference/simplexml/functions/simplexml-element-attributes.xml @@ -1,8 +1,8 @@ - + - simplexml_element->attributes + SimpleXMLElement->attributes Identifies an element's attributes. @@ -10,7 +10,7 @@ Description - object simplexml_elementsimplexml_element->attributes + object SimpleXMLElementsimplexml_element->attributes stringdata diff --git a/reference/simplexml/functions/simplexml-element-children.xml b/reference/simplexml/functions/simplexml-element-children.xml index c834b090d7..d422f4a658 100644 --- a/reference/simplexml/functions/simplexml-element-children.xml +++ b/reference/simplexml/functions/simplexml-element-children.xml @@ -1,8 +1,8 @@ - + - simplexml_element->children + SimpleXMLElement->children Finds children of given node. @@ -10,7 +10,7 @@ Description - object simplexml_elementsimplexml_element->children + object SimpleXMLElementsimplexml_element->children diff --git a/reference/simplexml/functions/simplexml-element-xpath.xml b/reference/simplexml/functions/simplexml-element-xpath.xml index 92a83340e1..2c629069fb 100644 --- a/reference/simplexml/functions/simplexml-element-xpath.xml +++ b/reference/simplexml/functions/simplexml-element-xpath.xml @@ -1,8 +1,8 @@ - + - simplexml_element->xpath + SimpleXMLElement->xpath Runs Xpath query on XML data. @@ -10,13 +10,13 @@ Description - arraysimplexml_element->xpath + arraySimpleXMLElement->xpath stringpath The xpath method searches the SimpleXML node for children matching the Xpath path. - It always returns an array of simplexml_element objects. + It always returns an array of SimpleXMLElement objects. diff --git a/reference/simplexml/functions/simplexml-import-dom.xml b/reference/simplexml/functions/simplexml-import-dom.xml index 1d4cd3cb6d..a090c3f7d5 100644 --- a/reference/simplexml/functions/simplexml-import-dom.xml +++ b/reference/simplexml/functions/simplexml-import-dom.xml @@ -1,17 +1,17 @@ - + simplexml_import_dom - Get a simplexml_element object from a + Get a SimpleXMLElement object from a DOM node. Description - object simplexml_elementsimplexml_import_dom + object SimpleXMLElementsimplexml_import_dom domNodenode diff --git a/reference/simplexml/functions/simplexml-load-file.xml b/reference/simplexml/functions/simplexml-load-file.xml index af16daedcd..34b1f7e2c7 100644 --- a/reference/simplexml/functions/simplexml-load-file.xml +++ b/reference/simplexml/functions/simplexml-load-file.xml @@ -1,5 +1,5 @@ - + simplexml_load_file @@ -10,13 +10,13 @@ Description - object simplexml_elementsimplexml_load_file + object SimpleXMLElementsimplexml_load_file stringfilename This function will convert the well-formed XML document in the file specified by filename to an object - of class simplexml_element. If any errors occur + of class SimpleXMLElement. If any errors occur during file access or interpretation, the function returns &false;. @@ -43,7 +43,7 @@ if (file_exists('test.xml')) { Example Title ... diff --git a/reference/simplexml/functions/simplexml-load-string.xml b/reference/simplexml/functions/simplexml-load-string.xml index e175dd7a7f..61f29a698c 100644 --- a/reference/simplexml/functions/simplexml-load-string.xml +++ b/reference/simplexml/functions/simplexml-load-string.xml @@ -1,5 +1,5 @@ - + simplexml_load_string @@ -10,7 +10,7 @@ Description - object simplexml_elementsimplexml_load_string + object SimpleXMLElementsimplexml_load_string stringdata @@ -48,7 +48,7 @@ var_dump($xml); Forty What? [from] => Joe