好了費話不用說多了我們來看看這款php sys_get_temp_dir -返回臨時文件路徑函數使用方法與實現原理吧。
sys_get_temp_dir
( PHP 5中“ = 5.2.1 )
好了費話不用說多了我們來看看這款php sys_get_temp_dir -返回臨時文件路徑函數使用方法與實現原理吧。
sys_get_temp_dir -返回目錄路徑用於臨時文件
描述
字符串sys_get_temp_dir (無效)
返回目錄路徑的PHP商店臨時文件在默認情況下。
返回值
返回路徑的臨時目錄中。
實例
例如# 1 sys_get_temp_dir ( )的例子
Examples
Example #1 sys_get_temp_dir() example
<?php
// Create a temporary file in the temporary
// files directory using sys_get_temp_dir()
$temp_file = tempnam(sys_get_temp_dir(), 'Tux');
echo $temp_file;
?>
The above example will output something similar to:
C:WindowsTempTuxA318.tmp
此函數的實現方法:
<?php
if ( !function_exists('sys_get_temp_dir')) {
function sys_get_temp_dir() {
if (!empty($_ENV['TMP'])) { return realpath($_ENV['TMP']); }
if (!empty($_ENV['TMPDIR'])) { return realpath( $_ENV['TMPDIR']); }
if (!empty($_ENV['TEMP'])) { return realpath( $_ENV['TEMP']); }
$tempfile=tempnam(uniqid(rand(),TRUE),'');
if (file_exists($tempfile)) {
unlink($tempfile);
return realpath(dirname($tempfile));
}
}
}
?>