vrana Tue Jan 3 17:39:26 2006 UTC
Modified files:
/phpdoc/en/reference/var/functions print-r.xml var-dump.xml
Log:
var_dump shows private too (bug #35822)
http://cvs.php.net/viewcvs.cgi/phpdoc/en/reference/var/functions/print-r.xml?r1=1.9&r2=1.10&diff_format=u
Index: phpdoc/en/reference/var/functions/print-r.xml
diff -u phpdoc/en/reference/var/functions/print-r.xml:1.9
phpdoc/en/reference/var/functions/print-r.xml:1.10
--- phpdoc/en/reference/var/functions/print-r.xml:1.9 Mon Dec 20 16:00:51 2004
+++ phpdoc/en/reference/var/functions/print-r.xml Tue Jan 3 17:39:26 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.9 $ -->
+<!-- $Revision: 1.10 $ -->
<!-- splitted from ./en/functions/var.xml, last change in rev 1.5 -->
<refentry id="function.print-r">
<refnamediv>
@@ -28,8 +28,7 @@
values will be presented in a format that shows keys and
elements. Similar notation is used for <type>object</type>s.
<function>print_r</function> and <function>var_export</function> will
- also show protected and private properties of objects with PHP 5, on the
- contrary to <function>var_dump</function>.
+ also show protected and private properties of objects with PHP 5.
</simpara>
<simpara>
Remember that <function>print_r</function> will move the array
http://cvs.php.net/viewcvs.cgi/phpdoc/en/reference/var/functions/var-dump.xml?r1=1.11&r2=1.12&diff_format=u
Index: phpdoc/en/reference/var/functions/var-dump.xml
diff -u phpdoc/en/reference/var/functions/var-dump.xml:1.11
phpdoc/en/reference/var/functions/var-dump.xml:1.12
--- phpdoc/en/reference/var/functions/var-dump.xml:1.11 Tue Jun 7 22:42:21 2005
+++ phpdoc/en/reference/var/functions/var-dump.xml Tue Jan 3 17:39:26 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.11 $ -->
+<!-- $Revision: 1.12 $ -->
<!-- splitted from ./en/functions/var.xml, last change in rev 1.84 -->
<refentry id="function.var-dump">
<refnamediv>
@@ -21,7 +21,7 @@
explored recursively with values indented to show structure.
</simpara>
<simpara>
- In PHP 5 only public, private and protected properties of objects will be
+ In PHP 5 all public, private and protected properties of objects will be
returned in the output.
</simpara>
&tip.ob-capture;