diff options
-rw-r--r-- | ext/simplexml/examples/security.php | 2 | ||||
-rw-r--r-- | ext/simplexml/examples/xpath.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/simplexml/examples/security.php b/ext/simplexml/examples/security.php index 9c39191361..17897b3fd7 100644 --- a/ext/simplexml/examples/security.php +++ b/ext/simplexml/examples/security.php @@ -2,5 +2,5 @@ $s = simplexml_load_file('security.xml'); echo $s->id; $s->id = 20; -$s->to_xml_file('security.new.xml'); +$s->asXML('security.new.xml'); ?> diff --git a/ext/simplexml/examples/xpath.php b/ext/simplexml/examples/xpath.php index 23253d7b74..8fcd9878ab 100644 --- a/ext/simplexml/examples/xpath.php +++ b/ext/simplexml/examples/xpath.php @@ -1,7 +1,7 @@ <?php $books = simplexml_load_file('book.xml'); -$xpath_result = $books->xsearch("/books/book/title"); +$xpath_result = $books->xpath("/books/book/title"); foreach($xpath_result as $entry ) { print "$entry \n"; } |