reference/var/functions/var-dump.xml
8cdc6621f9826d04abc3e50438c010804d7e8683
...
...
@@ -11,8 +11,8 @@
11
11
&reftitle.description;
12
12
<methodsynopsis>
13
13
<type>void</type><methodname>var_dump</methodname>
14
-
<methodparam><type>mixed</type><parameter>expression</parameter></methodparam>
15
-
<methodparam choice="opt"><type>mixed</type><parameter>...</parameter></methodparam>
14
+
<methodparam><type>mixed</type><parameter>value</parameter></methodparam>
15
+
<methodparam rep="repeat"><type>mixed</type><parameter>values</parameter></methodparam>
16
16
</methodsynopsis>
17
17
<simpara>
18
18
This function displays structured information about one or more
...
...
@@ -20,8 +20,9 @@
20
20
explored recursively with values indented to show structure.
21
21
</simpara>
22
22
<simpara>
23
-
In PHP 5 all public, private and protected properties of objects will be
24
-
returned in the output.
23
+
All public, private and protected properties of objects will be returned in
24
+
the output unless the object implements a
25
+
<link linkend="language.oop5.magic.debuginfo">__debugInfo()</link> method.
25
26
</simpara>
26
27
&tip.ob-capture;
27
28
</refsect1>
...
...
@@ -31,10 +32,18 @@
31
32
<para>
32
33
<variablelist>
33
34
<varlistentry>
34
-
<term><parameter>expression</parameter></term>
35
+
<term><parameter>value</parameter></term>
35
36
<listitem>
36
37
<para>
37
-
The variable you want to dump.
38
+
The expression to dump.
39
+
</para>
40
+
</listitem>
41
+
</varlistentry>
42
+
<varlistentry>
43
+
<term><parameter>values</parameter></term>
44
+
<listitem>
45
+
<para>
46
+
Further expressions to dump.
38
47
</para>
39
48
</listitem>
40
49
</varlistentry>
...
...
@@ -111,11 +120,11 @@ bool(true)
111
120
<member><function>print_r</function></member>
112
121
<member><function>debug_zval_dump</function></member>
113
122
<member><function>var_export</function></member>
123
+
<member><link linkend="language.oop5.magic.debuginfo">__debugInfo()</link></member>
114
124
</simplelist>
115
125
</para>
116
126
</refsect1>
117
127
</refentry>
118
-

119
128
<!-- Keep this comment at the end of the file
120
129
Local variables:
121
130
mode: sgml
122
131