Fix doc bug #53088 (fseek: Second note section ends with same text as first).

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@304462 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Adam Harvey 2010-10-18 01:59:58 +00:00
parent 68bb17b994
commit f668f7feff

View file

@ -101,16 +101,17 @@ fseek($fp, 0);
&reftitle.notes;
<note>
<para>
If you have opened the file in append ("a" or "a+") mode, any data you write
to the file will always be appended, regardless of the file position.
If you have opened the file in append (<literal>a</literal> or
<literal>a+</literal>) mode, any data you write to the file will always be
appended, regardless of the file position, and the result of calling
<function>fseek</function> will be undefined.
</para>
</note>
<note>
<para>
May not be used on file pointers returned by
<function>fopen</function> if they use the "http://" or "ftp://"
formats. <function>fseek</function> gives also undefined results for
append-only streams (opened with "a" flag).
May not be used on file pointers returned by <function>fopen</function> if
they use the <literal>http://</literal> or <literal>ftp://</literal>
schemes.
</para>
</note>
</refsect1>