我无法访问具有rw-r--r--
权限的服务器中的文件,file_exists()
函数始终返回FALSE
访问权限要更改哪些内容?
答案 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
}