您好,登錄后才能下訂單哦!
PHP中獲取URL參數的方法有哪些?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
第一種、利用$_SERVER內置數組變量
相對較為原始的$_SERVER['QUERY_STRING']來獲取,URL的參數,通常使用這個變量返回的會是類似這樣的數據:name=tank&sex=1
如果需要包含文件名的話可以使用$_SERVER["REQUEST_URI"](返回類似:/index.php?name=tank&sex=1)
第二種、利用pathinfo內置函數
復制代碼 代碼如下:
<?php
$test = pathinfo("http://localhost/index.php");
print_r($test);
/*
結果如下
Array
(
[dirname] => http://localhost //url的路徑
[basename] => index.php //完整文件名
[extension] => php //文件名后綴
[filename] => index //文件名
)
*/
?>
第三種、利用parse_url內置函數
復制代碼 代碼如下:
<?php
$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 //后面根的錨點
)
*/
?>
第四種、利用basename內置函數
復制代碼 代碼如下:
<?php
$test = basename("http://localhost/index.php?name=tank&sex=1#top");
echo $test;
/*
結果如下
index.php?name=tank&sex=1#top
*/
?>
另外,還有就是自己通過正則匹配的處理方式來獲取需要的值了。這種方式較為精確,效率暫不考慮。。。
下面拓展實踐下正則處理方式:
復制代碼 代碼如下:
<?php
preg_match_all("/(\w+=\w+)(#\w+)?/i","http://localhost/index.php?name=tank&sex=1#top",$match);
print_r($match);
/*
結果如下
Array
(
[0] => Array
(
[0] => name=tank
[1] => sex=1#top
)
[1] => Array
(
[0] => name=tank
[1] => sex=1
)
[2] => Array
(
[0] =>
[1] => #top
)
)
*/
?>
看完上述內容,你們掌握PHP中獲取URL參數的方法有哪些的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。