PHP | tmpfile( ) Function
The tmpfile() function in PHP is an inbuilt function which is used to create a temporary file with a unique name in read-write (w+) mode.
The file created using tmpfile() function gets automatically deleted when close using fclose() or when there are no remaining references to the file handle.
The end of the script also results in the removal of the temporary file created using tmpfile() function.
The tmpfile() function takes no parameters and it returns a file handle which is similar to the one returned by fopen(), for the new file or FALSE on failure.
Syntax:
tmpfile()
Return Value:
It returns a file handle for the new file on success or FALSE on failure.
Errors And Exception:
- The temporary file is automatically removed when it is closed with fclose(), or when the script ends.
- The tmpfile() function returns Boolean False but many times it happens that it returns a non-Boolean value which evaluates to False.
Examples:
Input : $temp_pointer = tmpfile();
fwrite($temp_pointer, 'temporary data');
fclose(temp_pointer);
Output : 1
Input : $temp_pointer = tmpfile();
fwrite($temp_pointer, "GeeksforGeeks");
echo fread($temp_pointer, 2048);
fclose($temp);
Output : Geeksforgeeks
Below programs illustrate the tmpfile() function.
Program 1
<?php // PHP program to illustarte tmpfile( ) Function $temp_pointer = tmpfile(); // Write on temporary file fwrite($temp_pointer, 'temporary data'); // This removes the file fclose(temp_pointer); ?> |
Output:
1
Program 2
<?php // PHP program to illustarte tmpfile( ) Function $temp_pointer = tmpfile(); // Write on temporary file fwrite($temp_pointer, "GeeksforGeeks"); // Read 2k from file echo fread($temp_pointer, 2048); // This removes the file fclose($temp_pointer); ?> |
Output:
GeeksforGeeks
Reference:
http://php.net/manual/en/function.tmpfile.php
Recommended Posts:
- How to call a function that return another function in JavaScript ?
- How to get the function name from within that function using JavaScript ?
- How to get the function name inside a function in PHP ?
- p5.js | nfs() Function
- PHP | Ds\Map last() Function
- p5.js | arc() Function
- D3.js | d3.mean() function
- CSS | hsl() Function
- D3.js | d3.sum() function
- p5.js | nfp() Function
- PHP | Ds\Map put() Function
- p5.js | pow() function
- p5.js | min() function
- PHP | exp() Function
- PHP | tan( ) Function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



