reference/var/functions/var-dump.xml
8cdc6621f9826d04abc3e50438c010804d7e8683
...
...
@@ -11,9 +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>expression</parameter></methodparam>
16
-
<methodparam choice="opt"><parameter>...</parameter></methodparam>
14
+
<methodparam><type>mixed</type><parameter>value</parameter></methodparam>
15
+
<methodparam rep="repeat"><type>mixed</type><parameter>values</parameter></methodparam>
17
16
</methodsynopsis>
18
17
<simpara>
19
18
This function displays structured information about one or more
...
...
@@ -21,8 +20,9 @@
21
20
explored recursively with values indented to show structure.
22
21
</simpara>
23
22
<simpara>
24
-
In PHP 5 all public, private and protected properties of objects will be
25
-
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.
26
26
</simpara>
27
27
&tip.ob-capture;
28
28
</refsect1>
...
...
@@ -32,10 +32,18 @@
32
32
<para>
33
33
<variablelist>
34
34
<varlistentry>
35
-
<term><parameter>expression</parameter></term>
35
+
<term><parameter>value</parameter></term>
36
36
<listitem>
37
37
<para>
38
-
The variable you want to export.
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.
39
47
</para>
40
48
</listitem>
41
49
</varlistentry>
...
...
@@ -109,13 +117,14 @@ bool(true)
109
117
&reftitle.seealso;
110
118
<para>
111
119
<simplelist>
112
-
<member><function>var_export</function></member>
113
120
<member><function>print_r</function></member>
121
+
<member><function>debug_zval_dump</function></member>
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