mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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:
parent
5656e18c6a
commit
f502c73d89
1 changed files with 5 additions and 5 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue