我需要检查与脚本位于同一文件夹中的文件是否存在并且大于100字节,如果是,则回显“是否存在”。

最佳答案

我相信您正在尝试执行以下操作:

$filename = 'test.txt';

if (file_exists($filename) && filesize($filename) > 100) {
    echo "is there";
} else {
    echo "not there";
}


阅读filesizefile_exists的PHP文档以获得更深入的说明。

关于php - 检查文件是否存在且大于,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19600666/

10-12 18:45