PHP is_file() 函數
PHP is_file() 函數

定義和用法
is_file() 函數檢查指定的文件是否是常規(guī)的文件。
如果文件是常規(guī)的文件,該函數返回 TRUE。
語法
is_file(file)
參數 | 描述 |
---|---|
file | 必需。規(guī)定要檢查的文件。 |
提示和注釋
注釋:該函數的結果會被緩存。請使用 clearstatcache() 來清除緩存。
實例
<?php
$file = "test.txt";
if(is_file($file))
{
echo ("$file is a regular file");
}
else
{
echo ("$file is not a regular file");
}
?>
$file = "test.txt";
if(is_file($file))
{
echo ("$file is a regular file");
}
else
{
echo ("$file is not a regular file");
}
?>
上面的代碼將輸出:
test.txt is a regular file

相關文章
- PHP 簡介
- PHP 運算符
- PHP Switch 語句
- PHP 數組排序
- PHP 發(fā)送電子郵件
- PHP 錯誤處理
- PHP 異常處理
- PHP array_diff_ukey() 函數
- PHP array_key_exists() 函數
- PHP array_key_first() 函數
- PHP array_pop() 函數
- PHP array_rand() 函數
- PHP array_reduce() 函數
- PHP array_replace_recursive() 函數
- PHP array_splice() 函數
- PHP array_values() 函數
- PHP arsort() 函數
- PHP shuffle() 函數
- PHP cURL 函數
- PHP HTTP 函數