摘要: 判断文件或目录是否存在有自带的函数 file_exists:文件是否存在 $file = "check.txt"; if(file_exists($file)) { echo "当前目录中,文件".$file."存在"; } else { echo "当前目录中,文件".$file."不存在"; } 阅读全文
posted @ 2019-05-29 14:43 坚持一点点 阅读(40964) 评论(0) 推荐(1) 编辑