Clarified the tempnam documentation

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@63049 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Zak Greant 2001-11-22 17:50:57 +00:00
parent 5656e18c6a
commit f502c73d89

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.88 $ -->
<!-- $Revision: 1.89 $ -->
<reference id="ref.filesystem">
<title>Filesystem functions</title>
<titleabbrev>Filesystem</titleabbrev>
@ -2787,7 +2787,7 @@ $real_path = realpath ("../../index.php");
<refentry id="function.tempnam">
<refnamediv>
<refname>tempnam</refname>
<refpurpose>Creates unique file name</refpurpose>
<refpurpose>Create file with unique file name</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
@ -2799,9 +2799,9 @@ $real_path = realpath ("../../index.php");
</funcprototype>
</funcsynopsis>
<para>
Creates a unique temporary filename in the specified directory.
Creates a file with a unique filename in the specified directory.
If the directory does not exist, <function>tempnam</function> may
generate a filename in the system's temporary directory.
generate a filename in the system's temporary directory.
</para>
<para>
Prior to PHP 4.0.6, the behaviour of the
@ -2814,7 +2814,7 @@ $real_path = realpath ("../../index.php");
tempnam(3) function if in doubt.
</para>
<para>
Returns the new temporary filename, or the &null; string on
Returns the new temporary filename, or the &false; string on
failure.
<example>
<title><function>tempnam</function> example</title>