VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php sys_get_temp_dir -返回临时文件路径

好了费话不用说多了我们来看看这款php sys_get_temp_dir -返回临时文件路径函数使用方法与实现原理吧.

sys_get_temp_dir PHP 5中“ = 5.2.1

sys_get_temp_dir -返回目录路径用于临时文件

描述:字符串sys_get_temp_dir(无效),返回目录路径的PHP商店临时文件在默认情况下.

返回值:返回路径的临时目录中.

php实例代码如下:

  1.  
  2. // Create a temporary file in the temporary  
  3. // files directory using sys_get_temp_dir() 
  4. $temp_file = tempnam(sys_get_temp_dir(), 'Tux'); 
  5.  
  6. echo $temp_file
  7. ?> 

The above example will output something similar to:C:WindowsTempTuxA318.tmp

此函数的实现方法:

  1.  
  2. if ( !function_exists('sys_get_temp_dir')) { 
  3.   function sys_get_temp_dir() { 
  4.     if (!emptyempty($_ENV['TMP'])) { return realpath($_ENV['TMP']); } 
  5.     if (!emptyempty($_ENV['TMPDIR'])) { return realpath$_ENV['TMPDIR']); } 
  6.     if (!emptyempty($_ENV['TEMP'])) { return realpath$_ENV['TEMP']); } 
  7.     $tempfile=tempnam(uniqid(rand(),TRUE),''); 
  8.     if (file_exists($tempfile)) { 
  9.     unlink($tempfile); 
  10.     return realpath(dirname($tempfile)); 
  11.     }//开源代码phpfensi.com 
  12.   } 
  13. ?>
  14.  

出处:http://www.phpfensi.com/php/20140912/5457.html


相关教程