linux tmp php文件怎么打开,tmpfile()

本文介绍了PHP的tmpfile()函数,用于创建一个临时文件并在脚本结束时自动删除。示例展示了如何使用tmpfile()进行读写操作,并在上传FTP文件时作为临时存储解决方案。同时,讨论了在某些环境下可能存在的问题以及替代方法。
摘要由CSDN通过智能技术生成

tmpfile()

(PHP 4, PHP 5, PHP 7)

建立一个临时文件

说明tmpfile(void):resource

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

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

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

返回值

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

范例

Example #1tmpfile()例子<?php

$temp = tmpfile();

fwrite($temp, "writing to tempfile");

fseek($temp, 0);

echo fread($temp, 1024);

fclose($temp); // this removes the file

?>

以上例程会输出:writing to tempfile

参见To get the underlying file path of a tmpfile file pointer:

$file = tmpfile();

$path = stream_get_meta_data($file)['uri']; // eg: /tmp/phpFx0513aI 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:

# Upload setup.inc

$fSetup = tmpfile();

fwrite($fSetup,$setup);

fseek($fSetup,0);

if (!ftp_fput($ftp,"inc/setup.inc",$fSetup,FTP_ASCII)) {

echo "Setup file NOT inserted
";

}

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.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;

}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.

-- JoshTo get tmpfile contents:

$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.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:

$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);

}

}

?>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值