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:
Adam Harvey 2012-09-24 03:54:38 +00:00
parent 1ad5ef04d9
commit fdccfb5a64

View file

@ -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;
&note.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">