Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

PHP temporary files

# Creates a file and returns the handle.
$temp = tmpfile();
fwrite($temp, "Hello, World!");
fclose($temp);
Source by softwareengineering.stackexchange.com #
 
PREVIOUS NEXT
Tagged: #PHP #temporary #files
ADD COMMENT
Topic
Name
9+1 =