gpt4 book ai didi

动态选择文件的 PHP 文件大小

转载 作者:搜寻专家 更新时间:2023-10-31 21:13:28 24 4
gpt4 key购买 nike

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

最佳答案

filesize

As of PHP 5.0.0, this function can also be used with some URL wrappers.

有点像

filesize('http://localhost/getfile.php?userid=1234');

应该够了

关于动态选择文件的 PHP 文件大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14057119/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com