PHP filetype()函数
filetype()函数可以返回指定文件或目录的文件类型。此函数在成功时可以返回七个可能的值之一,失败时返回false。
语法
string filetype ( string filename )
可能的值有:fifo、char、dir、block、link、file和unknown。
如果stat调用失败或文件类型未知,则filetype()也可以产生一个E_NOTICE消息。
示例
<?php
echo filetype("/PhpProject/sample.txt"); // file
echo "\n";
echo filetype("/PhpProject/"); // dir
?>
输出
file
dir