Is there a possibility to obtain filename from file handle? Or how can I delete file having only a handle?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
There is stream_get_meta_data. It works for a stream that you get from tmpfile(). If you call it on a regular file pointer then you might only get the basename.
Example for tmpfile():
Example for fopen("somefile", "r"):
|
|||||
|
|
This is untested so it might need tweaking. EDIT Apparently, there is a simpler solution. |
||||
|
|
To achieve this, you will need to create a wrapper that stores the file name. A file handle has no context of the filename it was created from. |
|||
|
|
|
A clean method to use temporary file:
without need to fclose the tmp file, it will be deleted while the php ends. |
||||
|
|