当前位置:编程学习 > php >>

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常用代码
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,