PHP readlink() 函數(shù)
PHP readlink() 函數(shù)

定義和用法
readlink() 函數(shù)返回符號(hào)連接的目標(biāo)。
如果成功,該函數(shù)返回連接的目標(biāo)。如果失敗,則返回 FALSE。
語(yǔ)法
readlink(linkpath)
參數(shù) | 描述 |
---|---|
linkpath | 必需。規(guī)定要檢查的連接路徑。 |
提示和注釋
注釋:該函數(shù)不能在 Windows 平臺(tái)上執(zhí)行。
實(shí)例
<?php
echo readlink("/user/testlink");
?>
echo readlink("/user/testlink");
?>

相關(guān)文章
- PHP 簡(jiǎn)介
- PHP EOF(heredoc) 使用說明
- PHP 魔術(shù)常量
- PHP 過濾器
- PHP JSON
- PHP array_diff_key() 函數(shù)
- PHP array_flip() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_rand() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_slice() 函數(shù)
- PHP array_udiff_assoc() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP arsort() 函數(shù)
- PHP extract() 函數(shù)
- PHP uksort() 函數(shù)
- PHP cURL 函數(shù)
- PHP 5 Filesystem 函數(shù)
- PHP Filter 函數(shù)
- PHP 雜項(xiàng) 函數(shù)