眾所周知在PHP中函數pathinfo()、parse_url()和basename(),這三個都是解析URL的函數,但是也存在一些區別,下面列舉了一些實例,透過實例更容易理解這三個函數的使用方法和技巧,有需要的朋友可以參考借鑒,有興趣的朋友們下面來一起學習學習吧。
本文主要介紹的是php使用函數pathinfo()
、parse_url()
和basename()
解析URL的實例程式碼,下面話不多說,直接來看程式碼
實例程式碼如下:
#1、利用pathinfo解析URL
#<? $test = pathinfo("http://localhost/index.php"); print_r($test); ?>
結果如下
Array ( [dirname] => http://localhost //url的路径 [basename] => index.php //完整文件名 [extension] => php //文件名后缀 [filename] => index //文件名 )
2、利用parse_url()函數解析
<? $test = parse_url("http://localhost/index.php?name=tank&sex=1#top"); print_r($test); ?>
結果如下
##
Array ( [scheme] => http //使用什么协议 [host] => localhost //主机名 [path] => /index.php //路径 [query] => name=tank&sex=1 // 所传的参数 [fragment] => top //后面根的锚点 )
3、使用basename()解析
<? $test = basename("http://localhost/index.php?name=tank&sex=1#top"); echo $test; ?>
結果如下
index.php?name=tank&sex=1#top以上就是本文的全部內容,希望對大家的學習有幫助。
Ajax php實作商品分類三級連動
以上是php使用函數pathinfo()、parse_url()和basename()解析URL的詳細內容。更多資訊請關注PHP中文網其他相關文章!