很不言自明。例如,文件 (AB.txt) 在我的 C 驱动器和我 (NFS) 安装的 W 驱动器上。Windows 7 x64 操作系统顺便说一句。
function fileExists($path){
return (@fopen($path,"r")==true);
}
var_dump(fileExists('C:\AB.txt'));
var_dump(fileExists('W:\AB.txt'));
var_dump(file_exists('C:\AB.txt'));
var_dump(file_exists('W:\AB.txt'));
给
布尔真
dir='ltr'>布尔假
布尔真
dir='ltr'>布尔假
我无法在 php wiki 或使用 Google 搜索时找到此行为的解释。