minor typos and some tag changes in tmpfile

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@30697 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jesus M. Castagnetto 2000-08-21 08:53:28 +00:00
parent 1aeaf85594
commit a1388f77ed

View file

@ -2283,14 +2283,15 @@ $tmpfname = tempnam ("/tmp", "FOO");
</funcsynopsis>
<para>
Creates a temporary file with an unique name in write mode,
returning a file handle, similar to the one returned by
returning a file handle similar to the one returned by
<function>fopen</function>
The file is automatically removed when closed (using
<function>fclose</function>), or when the script ends.
</para>
<para>
For details, consult your system documentation on the tmpfile(3)
function, as well as the <literal>stdio.h</literal> header file.
For details, consult your system documentation on the
<literal>tmpfile(3)</literal> function, as well as the
<filename>stdio.h</filename> header file.
</para>
<para>
See also <function>tempnam</function>.