超越PHP PHP动态 | 经典文章 | CLASS | 相关下载 | 常见问题 | FORUM | WIKI | 在线手册
Site search:    
<globis_executable>
Last updated: Fri, 22 Jun 2007

is_dir

(PHP 3, PHP 4 , PHP 5)

is_dir -- 判断给定文件名是否是一个目录

说明

bool is_dir ( string filename)

如果文件名存在并且为目录则返回 TRUE。如果 filename 是一个相对路径,则按照当前工作目录检查其相对路径。

注: 本函数的结果会被缓存。详细信息参见 clearstatcache()

注: 本函数不能作用于远程文件,被检查的文件必须通过服务器的文件系统访问。

参见 chdir()diropendir()is_file()is_link()




add a note add a note User Contributed Notes
is_dir
andreas at rueping dot net
24-Sep-2003 08:29
function checks if a folder is empty or not. Retruns "true" if it is empty and "false" if it is full with data. Also if the folder doesnt even exist, function returns "true".

--------------------------------------------------
--------------------------------------------------

// returns true if folder is empty or not existing
// false if folde is full

<?
function is_emtpy_folder($folder){
if(is_dir($folder) ){
$handle = opendir($folder);
while( (gettype( $name = readdir($handle)) != "boolean")){
$name_array[] = $name;
}
foreach($name_array as $temp)
$folder_content .= $temp;

if($folder_content == "...")
return true;
else
return false;

closedir($handle);
}
else
return true; // folder doesnt exist
}
?>

<globis_executable>
 Last updated: Fri, 22 Jun 2007
view source | feedback | send page | sitemap | aboutus   
Copyright ® 2002-2003 PHPE.NET. All rights reserved
Last updated:2002-11-22