file_exists()返回FALSE

时间:2017-03-23 09:04:37

标签: php file-permissions file-exists

我无法访问具有rw-r--r--权限的服务器中的文件,file_exists()函数始终返回FALSE访问权限要更改哪些内容?

1 个答案:

答案 0 :(得分:0)

如果谈论php,函数实际上是file_exists(path)而不是file_exist(),而file_exists()需要在驱动器上使用文件路径而不是URL。

所以你应该这样做:

$file = '/var/www/html/scripts/asset/some_file.png';
if(file_exists($file))
{
    //Will enter here if the file actually exists in that path
}