linkinfo() 函數是 PHP 中的內置函數,用於檢索與鏈接相關的信息。該函數檢查存在的路徑所指向的鏈接。
用法:
linkinfo(string $path)
參數:該函數接受一個參數,如下所述:
- $路徑:該參數指定文件路徑的鏈接。
返回值: ‘linkinfo()’函數返回有關鏈接文件鏈接的信息。如果成功,它將返回一個正整數值,否則,如果未找到鏈接,則返回-1。
示例 1:下麵的代碼演示了linkinfo()函數。
PHP
<?php
echo linkinfo('/dev');
?>
注意:根據您的係統,輸出會有所不同。
輸出:
5
示例 2:下麵的代碼演示了linkinfo()函數。
PHP
<?php
$num = linkinfo('/gfg') ;
if($num == -1){
echo "Link is not existing";
}
else {
echo "Link is existing" ;
}
?>
輸出:
Link is existing
參考: https://www.php.net/manual/en/function.linkinfo.php
相關用法
- PHP link( )用法及代碼示例
- PHP libxml_get_errors()用法及代碼示例
- PHP libxml_get_last_error()用法及代碼示例
- PHP libxml_use_internal_errors()用法及代碼示例
- PHP libxml_clear_errors()用法及代碼示例
- PHP libxml_set_streams_context()用法及代碼示例
- PHP libxml_set_external_entity_loader()用法及代碼示例
- PHP list()用法及代碼示例
- PHP log()用法及代碼示例
- PHP log10()用法及代碼示例
- PHP log1p()用法及代碼示例
- PHP lstat()用法及代碼示例
- PHP lchown()用法及代碼示例
- PHP lchgrp()用法及代碼示例
- PHP localeconv()用法及代碼示例
- PHP lcfirst()用法及代碼示例
- PHP lcg_value()用法及代碼示例
- PHP levenshtein()用法及代碼示例
- PHP localtime()用法及代碼示例
- PHP long2ip()用法及代碼示例
- PHP ltrim()用法及代碼示例
- PHP Hebrev()用法及代碼示例
- PHP Max()用法及代碼示例
- PHP String htmlspecialchars()用法及代碼示例
- PHP String htmlspecialchars_decode()用法及代碼示例
注:本文由純淨天空篩選整理自neeraj3304大神的英文原創作品 PHP linkinfo() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。