reference/zlib/functions/gzuncompress.xml
02ba67b51f2bde571b6ce07026e935f4e81019af
...
...
@@ -8,9 +8,9 @@
8
8
<refsect1 role="description">
9
9
&reftitle.description;
10
10
<methodsynopsis>
11
-
<type>string</type><methodname>gzuncompress</methodname>
11
+
<type class="union"><type>string</type><type>false</type></type><methodname>gzuncompress</methodname>
12
12
<methodparam><type>string</type><parameter>data</parameter></methodparam>
13
-
<methodparam choice="opt"><type>int</type><parameter>length</parameter><initializer>0</initializer></methodparam>
13
+
<methodparam choice="opt"><type>int</type><parameter>max_length</parameter><initializer>0</initializer></methodparam>
14
14
</methodsynopsis>
15
15
<para>
16
16
This function uncompress a compressed string.
...
...
@@ -29,7 +29,7 @@
29
29
</listitem>
30
30
</varlistentry>
31
31
<varlistentry>
32
-
<term><parameter>length</parameter></term>
32
+
<term><parameter>max_length</parameter></term>
33
33
<listitem>
34
34
<para>
35
35
The maximum length of data to decode.
...
...
@@ -47,7 +47,7 @@
47
47
<para>
48
48
The function will return an error if the uncompressed data is more than
49
49
32768 times the length of the compressed input <parameter>data</parameter>
50
-
or more than the optional parameter <parameter>length</parameter>.
50
+
or more than the optional parameter <parameter>max_length</parameter>.
51
51
</para>
52
52
</refsect1>
53
53
<refsect1 role="examples">
...
...
@@ -79,7 +79,6 @@ echo $uncompressed;
79
79
</para>
80
80
</refsect1>
81
81
</refentry>
82
-

83
82
<!-- Keep this comment at the end of the file
84
83
Local variables:
85
84
mode: sgml
86
85