phpfunctionsystem-paths

Alternatives for PHP older version functions


Anyone knows alternative function for sys_get_temp_dir and DIRECTORY_SEPARATOR and tempnam in PHP

existing PHP version is 4.*


Solution

  • tempnam exists in 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; 
      } 
    }