bjori Mon May 28 11:27:04 2007 UTC
Modified files:
/phpdoc/en/reference/simplexml/functions simplexml-load-file.xml
Log:
Typo in example (bug#41071)
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/simplexml/functions/simplexml-load-file.xml?r1=1.18&r2=1.19&diff_format=u
Index: phpdoc/en/reference/simplexml/functions/simplexml-load-file.xml
diff -u phpdoc/en/reference/simplexml/functions/simplexml-load-file.xml:1.18
phpdoc/en/reference/simplexml/functions/simplexml-load-file.xml:1.19
--- phpdoc/en/reference/simplexml/functions/simplexml-load-file.xml:1.18
Thu Feb 15 17:03:31 2007
+++ phpdoc/en/reference/simplexml/functions/simplexml-load-file.xml Mon May
28 11:27:04 2007
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.18 $ -->
+<!-- $Revision: 1.19 $ -->
<refentry id='function.simplexml-load-file'>
<refnamediv>
<refname>simplexml_load_file</refname>
@@ -106,7 +106,7 @@
if (file_exists('test.xml')) {
$xml = simplexml_load_file('test.xml');
- var_dump($xml);
+ print_r($xml);
} else {
exit('Failed to open test.xml.');
}