最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
PHP 四种URL解析处理方式的例子
时间:2022-06-24 15:27:30 编辑:袖梨 来源:一聚教程网
第一种、利用$_SERVER内置数组变量
相对较为原始的$_SERVER['QUERY_STRING']来获取,URL的参数,通常使用这个变量返回的会是类似这样的数据:name=tank&sex=1
如果需要包含文件名的话可以使用$_SERVER["REQUEST_URI"](返回类似:/index.php?name=tank&sex=1)
第二种、利用pathinfo内置函数
01
02 $test = pathinfo("http://localhost/index.php");
03 print_r($test);
04 /*
05 结果如下
06 Array
07 (
08 [dirname] => http://localhost //url的路径
09 [basename] => index.php //完整文件名
10 [extension] => php //文件名后缀
11 [filename] => index //文件名
12 )
13 */
14 ?>
第三种、利用parse_url内置函数
01
02 $test = parse_url("http://localhost/index.php?name=tank&sex=1#top");
03 print_r($test);
04 /*
05 结果如下
06 Array
07 (
08 [scheme] => http //使用什么协议
09 [host] => localhost //主机名
10 [path] => /index.php //路径
11 [query] => name=tank&sex=1 // 所传的参数
12 [fragment] => top //后面根的锚点
13 )
14 */
15 ?>
第四种、利用basename内置函数
1
2 $test = basename("http://localhost/index.php?name=tank&sex=1#top");
3 echo $test;
4 /*
5 结果如下
6 index.php?name=tank&sex=1#top
7 */
8 ?>
另外,还有就是自己通过正则匹配的处理方式来获取需要的值了。这种方式较为精确,效率暂不考虑。。。
下面拓展实践下正则处理方式:
01
02 preg_match_all("/(w+=w+)(#w+)?/i","http://localhost/index.php?name=tank&sex=1#top",$match);
03 print_r($match);
04 /*
05 结果如下
06 Array
07 (
08 [0] => Array
09 (
10 [0] => name=tank
11 [1] => sex=1#top
12 )
13 [1] => Array
14 (
15 [0] => name=tank
16 [1] => sex=1
17 )
18 [2] => Array
19 (
20 [0] =>
21 [1] => #top
22 )
23 )
24 */
25 ?>
路途漫漫...还有待继续挖掘...
相关文章
- 炉石传说血DK卡组怎么样 炉石传说血DK卡组推荐介绍 11-05
- 咒术回战幻影夜行官网在哪里 咒术回战幻影夜行官网地址介绍 11-05
- 蚂蚁庄园今天答题答案2024年10月26日 11-05
- 以闪亮之名变装物语甜趣篇怎么玩 11-05
- 闪耀暖暖永夜禁锢怎么玩 11-05
- 闪耀暖暖永夜禁锢怎么玩 闪耀暖暖永夜禁锢活动介绍 11-05