tmpfile

(PHP 4, PHP 5)

tmpfileCreates a temporary file

Description

resource tmpfile ( void )

Creates a temporary file with a unique name in read-write (w+) mode and returns a file handle .

The file is automatically removed when closed (for example, by calling fclose(), or when there are no remaining references to the file handle returned by tmpfile()), or when the script ends.

For details, consult your system documentation on the tmpfile(3) function, as well as the stdio.h header file.

Return Values

Returns a file handle, similar to the one returned by fopen(), for the new file or FALSE on failure.

Examples

Example #1 tmpfile() example

<?php
$temp 
tmpfile();
fwrite($temp"writing to tempfile");
fseek($temp0);
echo 
fread($temp1024);
fclose($temp); // this removes the file
?>

The above example will output:

writing to tempfile

See Also

Коментарии

I found this function useful when uploading a file through FTP. One of the files I was uploading was input from a textarea on the previous page, so really there was no "file" to upload, this solved the problem nicely:

<?php
   
# Upload setup.inc
   
$fSetup tmpfile();
   
fwrite($fSetup,$setup);
   
fseek($fSetup,0);
    if (!
ftp_fput($ftp,"inc/setup.inc",$fSetup,FTP_ASCII)) {
        echo 
"<br /><i>Setup file NOT inserted</i><br /><br />";
    }
   
fclose($fSetup);
?>

The $setup variable is the contents of the textarea.

And I'm not sure if you need the fseek($temp,0); in there either, just leave it unless you know it doesn't effect it.
2005-10-04 15:14:54
http://php5.kiev.ua/manual/ru/function.tmpfile.html
No, the fseek() is necessary - after writing to the file, the file pointer (I'll use "file pointer" to refer to the current position in the file, the thing you change with fseek()) is at the end of the file, and reading at the end of the file gives you EOF right away, which manifests itself as an empty upload.

Where you might be getting confused is in some systems' requirement that one seek or flush between reading and writing the same file.  fflush() satisfies that prerequisite, but it doesn't do anything about the file pointer, and in this case the file pointer needs moving.

-- Josh
2007-04-09 02:46:17
http://php5.kiev.ua/manual/ru/function.tmpfile.html
Автор:
Beware that PHP's tmpfile is not an equivalent of unix' tmpfile.
PHP (at least v. 5.3.17/linux I'm using now) creates a file in /tmp with prefix "php", and deletes that file on fclose or script termination.
So, if you want to be sure that you don't leave garbage even in case of a fatal error, or killed process, you shouldn't rely on this function.
Use the classical method of deleting the file after creation:
<?php
$fn 
tempnam ('/tmp''some-prefix-');
if (
$fn)
  {
   
$f fopen ($fn'w+');
   
unlink ($fn);  // even if fopen failed, because tempnam created the file
   
if ($f)
      {
       
do_something_with_file_handle ($f);
      }
  }
?>
2012-11-22 10:32:26
http://php5.kiev.ua/manual/ru/function.tmpfile.html
Автор:
Since this function may not be working in some environments, here is a simple workaround:

function temporaryFile($name, $content)
{
    $file = DIRECTORY_SEPARATOR .
            trim(sys_get_temp_dir(), DIRECTORY_SEPARATOR) .
            DIRECTORY_SEPARATOR .
            ltrim($name, DIRECTORY_SEPARATOR);

    file_put_contents($file, $content);

    register_shutdown_function(function() use($file) {
        unlink($file);
    });

    return $file;
}
2016-10-19 18:19:17
http://php5.kiev.ua/manual/ru/function.tmpfile.html
Автор:
To get the underlying file path of a tmpfile file pointer:

<?php
$file 
tmpfile();
$path stream_get_meta_data($file)['uri']; // eg: /tmp/phpFx0513a
2018-04-27 22:55:30
http://php5.kiev.ua/manual/ru/function.tmpfile.html
To get tmpfile contents:
<?php
  $tmpfile 
tmpfile();
 
$tmpfile_path stream_get_meta_data($tmpfile)['uri'];
 
// ... write to tmpfile ...
 
$tmpfile_content file_get_contents($tmpfile_path);
?>

Perhaps not the best way for production code, but good enough for logging or a quick var_dump() debug run.
2019-08-27 19:40:51
http://php5.kiev.ua/manual/ru/function.tmpfile.html
at least on Windows 10 with php 7.3.7, and Debian Linux with php 7.4.2,

the mode is not (as the documentation states) 'w+' , it is 'w+b'

(an important distinction when working on Windows systems)
2020-02-25 19:11:20
http://php5.kiev.ua/manual/ru/function.tmpfile.html

    Поддержать сайт на родительском проекте КГБ