From f502c73d893b58cff4cdcb7467236ae8b2cd4c9d Mon Sep 17 00:00:00 2001 From: Zak Greant Date: Thu, 22 Nov 2001 17:50:57 +0000 Subject: [PATCH] Clarified the tempnam documentation git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@63049 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/filesystem.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/functions/filesystem.xml b/functions/filesystem.xml index 2efecff4aa..9c8d7e9682 100644 --- a/functions/filesystem.xml +++ b/functions/filesystem.xml @@ -1,5 +1,5 @@ - + Filesystem functions Filesystem @@ -2787,7 +2787,7 @@ $real_path = realpath ("../../index.php"); tempnam - Creates unique file name + Create file with unique file name Description @@ -2799,9 +2799,9 @@ $real_path = realpath ("../../index.php"); - 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, tempnam may - generate a filename in the system's temporary directory. + generate a filename in the system's temporary directory. 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. - Returns the new temporary filename, or the &null; string on + Returns the new temporary filename, or the &false; string on failure. <function>tempnam</function> example