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>