Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私がした後:
$temp = tmpfile(); fwrite($temp, "writing to tempfile");
$temp作成したファイルへのフルパスを取得したいと思いますtmpfile。
$temp
tmpfile
その情報を得るために何をする必要がありますか?
$path = tempnam(sys_get_temp_dir(), 'prefix');
この例を参照してください。