我有一个 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 文件本身?