別のphpスクリプトで操作された後、ファイルシステム上のファイルのサイズを決定する必要があるphpスクリプトがあります。
たとえば、固定サイズの zip ファイルが存在しますが、アクセスしようとするユーザーに基づいて、未知のサイズの追加ファイルが挿入されます。したがって、ファイルを提供しているページは getfile.php?userid=1234 のようなものです。
これまでのところ、私はこれを知っています:
filesize('getfile.php'); //returns the actual file size of the php file, not the result of script execution
readfile('getfile.php'); //same as filesize()
filesize('getfile.php?userid=1234'); //returns false, as it can't find the file matching the name with GET vars attached
readfile('getfile.php?userid=1234'); //same as filesize()
PHPファイル自体だけでなく、PHPスクリプトの結果サイズを読み取る方法はありますか?