任何人都知道PHP中sys_get_temp_dir
和DIRECTORY_SEPARATOR
以及tempnam
的替代功能
现有PHP版本为4. *
答案 0 :(得分:1)
tempnam存在于PHP4中
You can use this code from php.net to get a temp dir:
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(__FILE__,'');
if (file_exists($tempfile)) {
unlink($tempfile);
return realpath(dirname($tempfile));
}
return null;
}
}