mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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:
parent
68bb17b994
commit
f668f7feff
1 changed files with 7 additions and 6 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue