(PHP 4, PHP 5)
is_dir — 判断给定文件名是否是一个目录
$filename
)
如果文件名存在并且为目录则返回 TRUE
。如果
filename
是一个相对路径,则按照当前工作目录检查其相对路径。
Note: 此函数的结果会被缓存。参见 clearstatcache() 以获得更多细节。
Example #1 is_dir() 例子
<?
var_dump(is_dir('a_file.txt')) . "\n";
var_dump(is_dir('bogus_dir/abc')) . "\n";
var_dump(is_dir('..')); //one dir up
?>
以上例程会输出:
bool(false) bool(false) bool(true)
自 PHP 5.0.0 起, 此函数也用于某些 URL 包装器。请参见 Supported Protocols and Wrappers以获得支持 stat() 系列函数功能的包装器列表。
filename
Path to the file. If filename
is a relative
filename, it will be checked relative to the current working
directory. If filename
is a symbolic or hard link
then the link will be resolved and checked. If you have enabled 安全模式,
or open_basedir further
restrictions may apply.
Returns TRUE
if the filename exists and is a directory, FALSE
otherwise.
Example #2 is_dir() example
<?php
var_dump(is_dir('a_file.txt'));
var_dump(is_dir('bogus_dir/abc'));
var_dump(is_dir('..')); //one dir up
?>
以上例程会输出:
bool(false) bool(false) bool(true)
失败时抛出E_WARNING
警告.
Note: 此函数的结果会被缓存。参见 clearstatcache() 以获得更多细节。
自 PHP 5.0.0 起, 此函数也用于某些 URL 包装器。请参见 Supported Protocols and Wrappers以获得支持 stat() 系列函数功能的包装器列表。