程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> php使用函數pathinfo()、parse_url()和basename()解析URL

php使用函數pathinfo()、parse_url()和basename()解析URL

編輯:PHP綜合

本文主要介紹的是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

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作能帶來一定的幫助,如果有疑問大家可以留言交流。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved