php file_exists 判断文件是否存在,是返回ture或1 否返回false或0
php教程 file_exists 判断文件是否存在,是返回ture或1 否返回false或0
file_exists($filename);
*/
$file ='www.zzzyk.com.txt';
if( file_exists( $file ) )
{
echo $file,'存在';
}
else
{
echo $file,'不存在,请查检路径或文件名是否写正确了';
}
// 本文章原创于www.zzzyk.com 转载注明出处
补充:Php教程,Php常用代码