php怎么查询文件夹是否存在
时间:2022-02-11 13:54
在php中,可以利用file_exists()函数来检查一个文件夹是否存在,语法“file_exists(文件夹路径)”;如果返回值为“true”则文件夹存在,如果返回值为“false”则文件夹不存在。 本教程操作环境:windows7系统、PHP7.1版、DELL G3电脑 在php中,可以利用file_exists()函数来检查一个文件夹是否存在。 file_exists() 函数检查文件或目录(文件夹)是否存在。如果指定的文件或目录存在则返回 true,否则返回 false。 语法: path:必需。规定要检查的路径。 示例:检查img文件夹是否存在: 推荐学习:《PHP视频教程》 以上就是php怎么查询文件夹是否存在的详细内容,更多请关注gxlsystem其它相关文章!file_exists(path)
<?php
header('content-type:text/html;charset=utf-8');
$file = 'img';
if (file_exists($file)) {
echo $file . ' 文件夹 存在!';
} else {
echo $file . ' 文件夹 不存在!';
}
?>