2

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

4

2 回答 2

9

我相信你正在尝试做这样的事情:

$filename = 'test.txt';

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

阅读filesizefile_exists的 PHP 文档以获得更深入的解释。

于 2013-10-25T23:03:54.610 回答
2

也许是这样的?

if(file_exists($filename) && filesize($filename) >100){
  echo "is there";
}
于 2013-10-25T23:02:32.990 回答