码迷,mamicode.com
首页 > Web开发 > 详细

$_SERVER[PHP_SELF] - $_SERVER[SCRIPT_NAME] - $_SERVER['REQUEST_URI']的区别

时间:2015-08-31 15:00:26      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

$_SERVER[PHP_SELF],$_SERVER[SCRIPT_NAME], $_SERVER[‘REQUEST_URI‘]在用法上是非常相似的,他们返回的都是与当前正在使用的页面地址有关的信息。

$_SERVER[’PHP_SELF’]

http://www.yoursite.com/example/ —– — /example/index.php

http://www.yoursite.com/example/index.php —– — /example/index.php

http://www.yoursite.com/example/index.php?a=test —– — /example/index.php

http://www.yoursite.com/example/index.php/dir/test —– — /dir/test

当我们使用$_SERVER[‘PHP_SELF‘]的时候,无论访问的URL地址是否有index.php,它都会自动的返回index.php.但是如果在文件名后面再加斜线的话,就会把后面所有的内容都返回在$_SERVER[‘PHP_SELF‘]。

$_SERVER[‘REQUEST_URI‘]

http://www.yoursite.com/example/ —– — /

http://www.yoursite.com/example/index.php —– — /example/index.php

http://www.yoursite.com/example/index.php?a=test —– — /example/index.php?a=test

http://www.yoursite.com/example/index.php/dir/test —– — /example/index.php/dir/test

$_SERVER[‘REQUEST_URI‘]返回的是我们在URL里写的精确的地址,如果URL只写到”/”,就返回“/”

$_SERVER[‘SCRIPT_NAME‘]

http://www.yoursite.com/example/ —– — /example/index.php

http://www.yoursite.com/example/index.php —– — /example/index.php

http://www.yoursite.com/example/index.php —– — /example/index.php

http://www.yoursite.com/example/index.php/dir/test —– — /example/index.php

在所有的返回中都是当前的文件名/example/index.php

$_SERVER[PHP_SELF] - $_SERVER[SCRIPT_NAME] - $_SERVER['REQUEST_URI']的区别

标签:

原文地址:http://www.cnblogs.com/yezuozuoloveqi/p/4772896.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!