How to get a temporary file path?

旧巷老猫 提交于 2019-11-30 08:09:13
legrandviking

There are many ways you can achieve this, here is one

<?php 
// Create a temp file in the temporary 
// files directory using sys_get_temp_dir()
$temp_file = tempnam(sys_get_temp_dir(), 'MyFileName');
echo $temp_file;
?>

The above example will output something similar to: /var/tmp/MyFileNameX322.tmp

still_dreaming_1

I know you can create a temporary file with tmpfile

That is a good start, something like this will do:

$fileHandleResource = tmpfile();

Can I somehow get the path, even with some other function or trick?

Yes:

$metaData = stream_get_meta_data($fileHandleResource);
$filepath = $metaData['uri'];

This approach has the benefit of leaving it up to PHP to pick a good place and name for this temporary file, which could end up being a good thing or a bad thing depending on your needs. But it is the simplest way to do this if you don't yet have a specific reason to pick your own directory and filename.

References:

http://us.php.net/manual/en/function.stream-get-meta-data.php

Getting filename (or deleting file) using file handle

This will give you the directory. I guess after that you are on your own.

Just in case someone encounters exactly the same problem. I ended up doing

$fh = fopen($filepath, 'w') or die("Can't open file $name for writing temporary stuff.");
fwrite($fh, $fileData);
fclose($fh);

and

unlink($filepath); 

at the end when file is not needed anymore.

Before that, I generated filename like that:

$r = rand();        
$filepath = "/var/www/html/someDirectory/$name.$r.xml";

I just generated a temporary file, deleted it, and created a folder with the same name

$tempFolder = tempnam(sys_get_temp_dir(), 'MyFileName');
unlink($tempFolder);
mkdir($tempFolder);
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!