时间:2021-07-01 10:21:17 帮助过:12人阅读
php file_exists函数怎么用?
作用:检查文件或目录是否存在。
语法:
file_exists(path)
参数:
path 必需。规定要检查的路径。
说明:
如果指定的文件或目录存在则返回 true,否则返回 false。
php file_exists()函数使用示例
<?php $file = file_exists("./test.txt"); echo $file; ?>
以上就是php file_exists函数怎么用的详细内容,更多请关注Gxl网其它相关文章!