Retrieve path of tmpfile()

Solution 1:

It seems stream_get_meta_data() also works :

$tmpHandle = tmpfile();
$metaDatas = stream_get_meta_data($tmpHandle);
$tmpFilename = $metaDatas['uri'];
fclose($tmpHandle);