当前位置:Gxlcms > PHP教程 > php使用file_exists检查文件或目录是否存在

php使用file_exists检查文件或目录是否存在

时间:2021-07-01 10:21:17 帮助过:22人阅读

  1. $filename = '/jbxue.com/aa/to/foo.txt';
  2. if (file_exists($filename)) {
  3. echo "文件$filename exists";
  4. } else {
  5. echo "文件$filename 不存在";
  6. }
  7. ?>

输出结果: 文件/jbxue.com/aa/to/foo.txt己存在

例2:

  1. echo file_exists("jbxue.com.txt");
  2. ?>

直接用file_exists来返回ture or false

人气教程排行