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
...
...
@@ -22,8 +22,7 @@
22
22
<simpara>
23
23
All public, private and protected properties of objects will be returned in
24
24
the output unless the object implements a
25
-
<link linkend="language.oop5.magic.debuginfo">__debugInfo()</link> method
26
-
(implemented in PHP 5.6.0).
25
+
<link linkend="language.oop5.magic.debuginfo">__debugInfo()</link> method.
27
26
</simpara>
28
27
&tip.ob-capture;
29
28
</refsect1>
...
...
@@ -33,10 +32,18 @@
33
32
<para>
34
33
<variablelist>
35
34
<varlistentry>
36
-
<term><parameter>expression</parameter></term>
35
+
<term><parameter>value</parameter></term>
37
36
<listitem>
38
37
<para>
39
-
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.
40
47
</para>
41
48
</listitem>
42
49
</varlistentry>
...
...
@@ -118,7 +125,6 @@ bool(true)
118
125
</para>
119
126
</refsect1>
120
127
</refentry>
121
-

122
128
<!-- Keep this comment at the end of the file
123
129
Local variables:
124
130
mode: sgml
125
131