php判断是否为文件(is_file())或目录(is_dir())的实例代码

发布时间:2020-08-30编辑:脚本学堂
分享二个php实例代码,学习使用php检测是否为文件、是否为目录的方法,学习下is_file()、is_dir()的用法。有需要的朋友研究下。

1,php检测变量是否为一个文件,is_file()的用法举例。
 

复制代码 代码示例:
<html>
<head>
<title>is_file()判断是否为文件-www.jb200.com</title>
</head>
<body>
<?php
$file = "test.txt";
outputFileTestInfo( $file );
function outputFileTestInfo( $f ){
   if ( ! file_exists( $f ) ){
       print "$f does not exist<BR>";
      return;
   }
   print "$f is ".(is_file( $f )?"":"not ")."a file<br>";
}
?>
</body>
</html>

2,php检测是否为一个目录,is_dir()的用法举例。
 

复制代码 代码示例:
<html>
<head>
<title>is_dir()检测是否为一个目录-www.jb200.com</title>
</head>
<body>
<?php
$file = "test.txt";
outputFileTestInfo( $file );
function outputFileTestInfo( $f ){
   if ( ! file_exists( $f ) ){
       print "$f does not exist<BR>";
      return;
   }
   print "$f is ".(is_dir( $f )?"":"not ")."a directory<br>";
}
?>
</body>
</html>