文字

tmpfile

(PHP 4, PHP 5, PHP 7)

tmpfile建立一个临时文件

说明

resource tmpfile ( void )

以读写(w+)模式建立一个具有唯一文件名的临时文件,返回一个文件句柄。

文件会在关闭后(用 fclose() )自动被删除,或当脚本结束后。

详细信息请参考系统手册中的 tmpfile(3) 函数,以及 stdio.h 头文件。

返回值

返回一个与 fopen() 所打开返回类似的新文件句柄, 或者在失败时返回 FALSE .

范例

Example #1 tmpfile() 例子

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

以上例程会输出:

writing to tempfile

参见

  • tempnam() - 建立一个具有唯一文件名的文件
  • sys_get_temp_dir() - 返回用于临时文件的目录

用户评论:

[#1] David dot Crowe at cnp-wireless dot com [2014-12-09 14:24:10]

The phrase, "when the script ends" is not clear. Does this mean when the session ends (assuming the file is never explicitly closed)?

[#2] ssandor [2012-11-22 08:32:26]

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);
      }
  }
?>

[#3] kexianbin at diyism dot com [2012-07-13 05:40:01]

If you want to specify the extension name of tmp file:

<?php
$tmp
=array_search('uri', @array_flip(stream_get_meta_data($GLOBALS[mt_rand()]=tmpfile())));
rename($tmp$tmp.='.png');
register_shutdown_function(create_function(''"unlink('{$tmp}');"));
?>

[#4] oremanj at gmail dot com [2007-04-08 23:46:17]

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

[#5] [2006-08-03 06:05:26]

fseek() is important because if you forget about it you will upload empty file...

i had sth like that ^_^

[#6] chris [at] pureformsolutions [dot] com [2005-10-04 12:14:54]

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.

上一篇: 下一篇: