有关 file_exists 函数与 file_exists语法,请参考:php使用 file_exists 检查文件或目录是否存在,file_exists函数应用实例
file_exists函数
说明
bool file_exists ( string $filename )
如果由 filename 指定的文件或目录存在则返回 TRUE,否则返回 FALSE。
在Windows上,使用/ /计算机名/共享/文件名或 计算机名共享文件名,以检查网络共享文件。
在 Windows 中要用 //computername/share/filename 或者 computernamesharefilename 来检查网络中的共享文件。
例1,
输出结果:
文件/jb200.com/aa/to/foo.txt己存在
例2,
直接用file_exists来返回ture or false。