nlopess Sun Dec 26 07:44:43 2004 EDT
Modified files:
/phpdoc/en/reference/var/functions var-dump.xml var-export.xml
Log:
fix the php5 object properties stuff. noted by Andi & Derick
http://cvs.php.net/diff.php/phpdoc/en/reference/var/functions/var-dump.xml?r1=1.8&r2=1.9&ty=u
Index: phpdoc/en/reference/var/functions/var-dump.xml
diff -u phpdoc/en/reference/var/functions/var-dump.xml:1.8
phpdoc/en/reference/var/functions/var-dump.xml:1.9
--- phpdoc/en/reference/var/functions/var-dump.xml:1.8 Mon Dec 20 11:00:51 2004
+++ phpdoc/en/reference/var/functions/var-dump.xml Sun Dec 26 07:44:43 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.8 $ -->
+<!-- $Revision: 1.9 $ -->
<!-- splitted from ./en/functions/var.xml, last change in rev 1.84 -->
<refentry id="function.var-dump">
<refnamediv>
@@ -20,9 +20,8 @@
explored recursively with values indented to show structure.
</simpara>
<simpara>
- In PHP only public properties of objects will be returned in the output.
- <function>var_export</function> and <function>print_r</function> will
- also return protected and private properties.
+ In PHP 5 only public, private and protected properties of objects will be
+ returned in the output.
</simpara>
&tip.ob-capture;
<para>
http://cvs.php.net/diff.php/phpdoc/en/reference/var/functions/var-export.xml?r1=1.6&r2=1.7&ty=u
Index: phpdoc/en/reference/var/functions/var-export.xml
diff -u phpdoc/en/reference/var/functions/var-export.xml:1.6
phpdoc/en/reference/var/functions/var-export.xml:1.7
--- phpdoc/en/reference/var/functions/var-export.xml:1.6 Mon Dec 20
11:00:51 2004
+++ phpdoc/en/reference/var/functions/var-export.xml Sun Dec 26 07:44:43 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/var.xml, last change in rev 1.6 -->
<refentry id="function.var-export">
<refnamediv>
@@ -16,9 +16,7 @@
<simpara>
This function returns structured information about the variable that is
passed to this function. It is similar to <function>var_dump</function>
- with two exceptions. The first one is that the returned representation is
- valid PHP code, the second that it will also return protected and private
- properties of an object with PHP 5.
+ with one exception: the returned representation is valid PHP code.
</simpara>
<simpara>
You can also return the variable representation by using &true; as