PHP file_exists函数——判断目录或文件是否存在,file_exists函数可判断指定的目录或文件是否存在,如果存在则返回true,否则返回false。
PHP file_exists函数 语法
bool file_exists(string filename)
参数filename用于指定某目录或文件地址。
PHP file_exists函数 示例
应用file_exists()函数判断“c:/test.txt”文件是否存在
代码如下:
<?php
echo file_exists("c:/test.txt");
?>
首先对获取的元素值进行编码格式的转换,然后应用file_exists()函数判断指定的目录、文件是否存在
代码如下:
<?php
if (isset(_POST ['file_name']) and_POST ['file_name'] != "") {
file_name = iconv ( "utf-8", "gb2312",_POST ['file_name'] );
if (file_exists ( $file_name )) {
echo "<script>alert('目录、文件已定位!');</script>";
} else {
echo "<script>alert('目录、文件不存在!');</script>";
}
} else {
echo "<script>alert('请输入正确的目录、文件路径!');</script>";
}
?>