定義和用法
函數 is_resource() 檢查變量是否為資源。
用法
bool is_resource ( mixed $value )
參數
Sr.No | 參數及說明 |
---|---|
1 |
value 被評估的變量。 |
返回值
這個函數返回true如果價值是一種資源,false除此以外。此函數不是嚴格的 type-checking 方法:如果 value 是已關閉的資源變量,它將返回 false。
依賴關係
PHP 4 及以上
示例
下麵的例子演示了 is_resource() 函數的使用(這裏 test.txt 是一個與這個例子文件放在同一路徑上的虛擬文本文件) -
<?php
$file = fopen("test.txt","w");
if (is_resource($file)) {
echo "File is open";
} else {
echo "Error open file";
}
?>
輸出
這將產生以下結果 -
File is open
示例
以下示例演示了資源關閉時 is_resource() 函數的使用(此處 test.txt 是與此示例文件位於同一路徑上的虛擬文本文件) -
<?php
$file = fopen("test.txt","w");
fclose($file);
if (is_resource($file)) {
echo "File is open";
} else {
echo "Error open file";
}
?>
輸出
這將產生以下結果 -
Error open file
相關用法
- PHP is_readable( )用法及代碼示例
- PHP is_readable()用法及代碼示例
- PHP is_real()用法及代碼示例
- PHP is_file( )用法及代碼示例
- PHP is_link( )用法及代碼示例
- PHP is_link()用法及代碼示例
- PHP is_subclass_of()用法及代碼示例
- PHP is_long()用法及代碼示例
- PHP is_iterable()用法及代碼示例
- PHP is_float()用法及代碼示例
- PHP is_object()用法及代碼示例
- PHP is_callable()用法及代碼示例
- PHP is_executable()用法及代碼示例
- PHP is_dir( )用法及代碼示例
- PHP is_dir()用法及代碼示例
- PHP is_nan()用法及代碼示例
- PHP is_uploaded_file()用法及代碼示例
- PHP is_string()用法及代碼示例
- PHP is_finite()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP - is_resource() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。