Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
PHP: sys_get_temp_dir - Manual
[go: Go Back, main page]

PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net

search for in the

version_compare" width="11" height="7"/> <set_time_limit
Last updated: Wed, 01 Nov 2006
view this page in

sys_get_temp_dir

(no version information, might be only in CVS)

sys_get_temp_dir --  一時ファイル用に使用されるディレクトリのパスを返す

説明

string sys_get_temp_dir ( void )

この関数は、PHP が一時ファイルを保存するデフォルトのディレクトリのパスを返します。

tmpfile()tempnam() も参照ください。



add a note add a note User Contributed Notes
sys_get_temp_dir
minghong at gmail dot com
23-Nov-2006 11:04
To add support of sys_get_temp_dir for PHP4/5, use the following code:

<?php
if ( !function_exists('sys_get_temp_dir') )
{
  
// Based on http://www.phpit.net/
   // article/creating-zip-tar-archives-dynamically-php/2/
  
function sys_get_temp_dir()
   {
      
// Try to get from environment variable
      
if ( !empty($_ENV['TMP']) )
       {
           return
realpath( $_ENV['TMP'] );
       }
       else if ( !empty(
$_ENV['TMPDIR']) )
       {
           return
realpath( $_ENV['TMPDIR'] );
       }
       else if ( !empty(
$_ENV['TEMP']) )
       {
           return
realpath( $_ENV['TEMP'] );
       }

      
// Detect by creating a temporary file
      
else
       {
          
// Try to use system's temporary directory
           // as random name shouldn't exist
          
$temp_file = tempnam( md5(uniqid(rand(), TRUE)), '' );
           if (
$temp_file )
           {
              
$temp_dir = realpath( dirname($temp_file) );
              
unlink( $temp_file );
               return
$temp_dir;
           }
           else
           {
               return
FALSE;
           }
       }
   }
}
?>

version_compare" width="11" height="7"/> <set_time_limit
Last updated: Wed, 01 Nov 2006
 
 
show source | credits | sitemap | contact | advertising | mirror sites