dave Tue Jul 20 06:25:33 2004 EDT
Modified files:
/phpdoc/en/reference/filesystem/functions fgets.xml
Log:
- Fix #28836.
http://cvs.php.net/diff.php/phpdoc/en/reference/filesystem/functions/fgets.xml?r1=1.12&r2=1.13&ty=u
Index: phpdoc/en/reference/filesystem/functions/fgets.xml
diff -u phpdoc/en/reference/filesystem/functions/fgets.xml:1.12
phpdoc/en/reference/filesystem/functions/fgets.xml:1.13
--- phpdoc/en/reference/filesystem/functions/fgets.xml:1.12 Mon May 17 15:42:15
2004
+++ phpdoc/en/reference/filesystem/functions/fgets.xml Tue Jul 20 06:25:33 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.12 $ -->
+<!-- $Revision: 1.13 $ -->
<!-- splitted from ./en/functions/filesystem.xml, last change in rev 1.2 -->
<refentry id="function.fgets">
<refnamediv>
@@ -14,10 +14,10 @@
<methodparam
choice="opt"><type>int</type><parameter>length</parameter></methodparam>
</methodsynopsis>
<para>
- Returns a string of up to length - 1 bytes read from the file
- pointed to by <parameter>handle</parameter>. Reading ends when
- length - 1 bytes have been read, on a newline (which is included
- in the return value), or on EOF (whichever comes first). If no length
+ Returns a string of up to <parameter>length</parameter> - 1 bytes read from
+ the file pointed to by <parameter>handle</parameter>. Reading ends when
+ <parameter>length</parameter> - 1 bytes have been read, on a newline (which is
+ included in the return value), or on EOF (whichever comes first). If no length
is specified, the length defaults to 1k, or 1024 bytes.
</para>
<para>