mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Fixes #43728 (An addition to fread)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@264831 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
fcef2ea0d9
commit
e85f3ac16b
1 changed files with 11 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.25 $ -->
|
||||
<!-- $Revision: 1.26 $ -->
|
||||
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.fread">
|
||||
<refnamediv>
|
||||
<refname>fread</refname>
|
||||
|
@ -160,6 +160,14 @@ fclose($handle);
|
|||
than the code above.
|
||||
</para>
|
||||
</note>
|
||||
<note>
|
||||
<para>
|
||||
Note that <function>fread</function> reads from the current position of
|
||||
the file pointer. Use <function>ftell</function> to find the current
|
||||
position of the pointer and <function>rewind</function> to rewind the
|
||||
pointer position.
|
||||
</para>
|
||||
</note>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="seealso">
|
||||
|
@ -175,6 +183,8 @@ fclose($handle);
|
|||
<member><function>fscanf</function></member>
|
||||
<member><function>file</function></member>
|
||||
<member><function>fpassthru</function></member>
|
||||
<member><function>ftell</function></member>
|
||||
<member><function>rewind</function></member>
|
||||
</simplelist>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
|
Loading…
Reference in a new issue