PHP 旧版本函数的替代品

Alternatives for PHP older version functions

任何人都知道 sys_get_temp_dirDIRECTORY_SEPARATORtempnam 在 PHP

中的替代函数

现有 PHP 版本为 4.*

tempna 存在于 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; 
  } 
}