Home > php教程 > php手册 > body text

php中file_exists函数使用详解

WBOY
Release: 2016-06-13 09:05:14
Original
909 people have browsed it

php中file_exists函数使用详解

   本文给大家讲解的是php中判断文件或者目录是否存在的file_exists函数,附上几个经典示例,有需要的小伙伴可以参考下。

  说明:

  bool file_exists ( string $filename )

  如果由 filename 指定的文件或目录存在则返回 TRUE,否则返回 FALSE。

  在Windows上,使用/ /计算机名/共享/文件名或 计算机名共享文件名,以检查网络共享文件。

  在 Windows 中要用 //computername/share/filename 或者 \\computername\share\filename 来检查网络中的共享文件。

  实例一

  ?

1

2

3

4

5

6

7

8

$filename = '/jb51.net/aa/to/foo.txt';

if (file_exists($filename)) {

echo "文件$filename exists";

} else {

echo "文件$filename 不存在";

}

?>

  输出结果为:

  文件/jb51.net/aa/to/foo.txt己存在

  实例二

  ?

1

2

3

echo file_exists("jb51.net.txt");

?>

  直接用file_exists来返回ture or false。

  以上所述就是本文的全部内容了,希望大家能够喜欢。

        :更多精彩教程请关注帮客之家编程

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!