|
在已知URL參數(shù)的情況下,我們可以根據(jù)自身情況采用$_GET來(lái)獲取相應(yīng)的參數(shù)信息($_GET['name']);那,在未知情況下如何獲取到URL上的參數(shù)信息呢?
第一種、利用$_SERVER內(nèi)置數(shù)組變量
相對(duì)較為原始的$_SERVER['QUERY_STRING']來(lái)獲取,URL的參數(shù),通常使用這個(gè)變量返回的會(huì)是類似這樣的數(shù)據(jù):name=tank&sex=1
如果需要包含文件名的話可以使用$_SERVER["REQUEST_URI"](返回類似:/index.php?name=tank&sex=1)
第二種、利用pathinfo內(nèi)置函數(shù)
復(fù)制代碼 代碼如下:
<?php
$test = pathinfo("http://localhost/index.php");
print_r($test);
/*
結(jié)果如下
Array
(
[dirname] => http://localhost //url的路徑
[basename] => index.php //完整文件名
[extension] => php //文件名后綴
[filename] => index //文件名
)
*/
?>
第三種、利用parse_url內(nèi)置函數(shù)
復(fù)制代碼 代碼如下:
<?php
$test = parse_url("http://localhost/index.php?name=tank&sex=1#top");
print_r($test);
/*
結(jié)果如下
Array
(
[scheme] => http //使用什么協(xié)議
[host] => localhost //主機(jī)名
[path] => /index.php //路徑
[query] => name=tank&sex=1 // 所傳的參數(shù)
[fragment] => top //后面根的錨點(diǎn)
)
*/
?>
第四種、利用basename內(nèi)置函數(shù)
復(fù)制代碼 代碼如下:
<?php
$test = basename("http://localhost/index.php?name=tank&sex=1#top");
echo $test;
/*
結(jié)果如下
index.php?name=tank&sex=1#top
*/
?>
另外,還有就是自己通過(guò)正則匹配的處理方式來(lái)獲取需要的值了。這種方式較為精確,效率暫不考慮。。。
下面拓展實(shí)踐下正則處理方式:
復(fù)制代碼 代碼如下:
<?php
preg_match_all("/(/w+=/w+)(#/w+)?/i","http://localhost/index.php?name=tank&sex=1#top",$match);
print_r($match);
/*
結(jié)果如下
Array
(
[0] => Array
(
[0] => name=tank
[1] => sex=1#top
)
[1] => Array
(
[0] => name=tank
[1] => sex=1
)
[2] => Array
(
[0] =>
[1] => #top
)
)
*/
?>
路途漫漫...還有待繼續(xù)挖掘...
php技術(shù):PHP URL參數(shù)獲取方式的四種例子,轉(zhuǎn)載需保留來(lái)源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。