mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 08:58:56 +00:00
Grammar fix arising from r327743 (thanks to bjori for pointing it out).
Additionally, make the notes actual note elements, and reorder the changelog to be in the usual descending order, since I already have the file open. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@327758 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
1ad5ef04d9
commit
fdccfb5a64
1 changed files with 23 additions and 17 deletions
|
@ -293,6 +293,13 @@ $handle = fopen("c:\\folder\\resource.txt", "r");
|
|||
</row>
|
||||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>5.2.6</entry>
|
||||
<entry>
|
||||
The <literal>'c'</literal> and <literal>'c+'</literal> options were
|
||||
added
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>4.3.2</entry>
|
||||
<entry>
|
||||
|
@ -310,13 +317,6 @@ $handle = fopen("c:\\folder\\resource.txt", "r");
|
|||
added
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>5.2.6</entry>
|
||||
<entry>
|
||||
The <literal>'c'</literal> and <literal>'c+'</literal> options were
|
||||
added
|
||||
</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
</tgroup>
|
||||
</informaltable>
|
||||
|
@ -346,16 +346,22 @@ $handle = fopen("ftp://user:password@example.com/somefile.txt", "w");
|
|||
&reftitle.notes;
|
||||
&warn.ssl-non-standard;
|
||||
¬e.sm.uidcheck.dir;
|
||||
<para>
|
||||
If you are experiencing problems with reading and writing to files and
|
||||
you're using the server module version of PHP, remember to make sure that
|
||||
the files and directories you're using are accessible to the server
|
||||
process.
|
||||
</para>
|
||||
<para>
|
||||
This function may success for directories. Use <function>is_dir</function>
|
||||
to distinguish file and directory.
|
||||
</para>
|
||||
<note>
|
||||
<para>
|
||||
If you are experiencing problems with reading and writing to files and
|
||||
you're using the server module version of PHP, remember to make sure that
|
||||
the files and directories you're using are accessible to the server
|
||||
process.
|
||||
</para>
|
||||
</note>
|
||||
<note>
|
||||
<para>
|
||||
This function may also succeed when <parameter>filename</parameter> is a
|
||||
directory. If you are unsure whether <parameter>filename</parameter> is a
|
||||
file or a directory, you may need to use the <function>is_dir</function>
|
||||
function before calling <function>fopen</function>.
|
||||
</para>
|
||||
</note>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="seealso">
|
||||
|
|
Loading…
Reference in a new issue