PHP is_link() 函數
PHP is_link() 函數

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

相關文章
- PHP 簡介
- PHP 運算符
- PHP 超級全局變量
- PHP date() 函數
- PHP 錯誤處理
- PHP 異常處理
- PHP array_change_key_case() 函數
- PHP array_chunk() 函數
- PHP array_intersect() 函數
- PHP array_key_first() 函數
- PHP array_product() 函數
- PHP array_reverse() 函數
- PHP array_unique() 函數
- PHP each() 函數
- PHP in_array() 函數
- PHP ksort() 函數
- PHP list() 函數
- PHP sort() 函數
- PHP Filter 函數
- PHP Libxml 函數