PHP旧版本功能的替代品

时间:2016-08-25 12:33:58

标签: php function system-paths

任何人都知道PHP中sys_get_temp_dirDIRECTORY_SEPARATOR以及tempnam的替代功能

现有PHP版本为4. *

1 个答案:

答案 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; 
  } 
}