Answers for "create temporary file in php"

PHP
2

php create temporary file

// Works on Native Server
// $tmp = tmpfile();
// $newfilename = 'newfile.txt';
// fwrite($tmp, "This is a sample string as a content.");
// fseek($tmp, 0);

// Works on Google App Engine
$dir = sys_get_temp_dir();
$tmp = tempnam($dir, "foo");
file_put_contents($tmp, "hello");
//$f = fopen($tmp, "a");
//fwrite($f, " world");
//fclose($f);
//echo file_get_contents($tmp);
Posted by: Guest on June-18-2020

Code answers related to "create temporary file in php"

Browse Popular Code Answers by Language