PHP is_dir() 函數(shù)
PHP is_dir() 函數(shù)

定義和用法
is_dir() 函數(shù)檢查指定的文件是否是一個(gè)目錄。
如果目錄存在,該函數(shù)返回 TRUE。
語法
is_dir(file)
參數(shù) | 描述 |
---|---|
file | 必需。規(guī)定要檢查的文件。 |
提示和注釋
注釋:該函數(shù)的結(jié)果會(huì)被緩存。請使用 clearstatcache() 來清除緩存。
實(shí)例
<?php
$file = "images";
if(is_dir($file))
{
echo ("$file is a directory");
}
else
{
echo ("$file is not a directory");
}
?>
$file = "images";
if(is_dir($file))
{
echo ("$file is a directory");
}
else
{
echo ("$file is not a directory");
}
?>
上面的代碼將輸出:
images is a directory

相關(guān)文章
- PHP 安裝
- PHP 語法
- PHP 魔術(shù)常量
- PHP $_POST 變量
- PHP 文件上傳
- PHP JSON
- PHP array() 函數(shù)
- PHP array_change_key_case() 函數(shù)
- PHP array_column() 函數(shù)
- PHP array_diff_uassoc() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_keys() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_values() 函數(shù)
- PHP extract() 函數(shù)
- PHP rsort() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP sizeof() 函數(shù)