共计 279 个字符,预计需要花费 1 分钟才能阅读完成。
在 PHP 中,可以使用 file_exists()
函数来判断目录是否存在。
示例代码如下:
$directory = '/path/to/directory';
if (file_exists($directory) && is_dir($directory)) {echo ' 目录存在 ';
} else {echo ' 目录不存在 ';
}
首先,使用 file_exists()
函数判断给定的路径是否存在,然后再使用 is_dir()
函数判断该路径是否是一个目录。如果两个条件都满足,则可以判断目录存在。
丸趣 TV 网 – 提供最优质的资源集合!
正文完