PHP_SELF、 SCRIPT_NAME、 REQUEST_URI区别
生活随笔
收集整理的這篇文章主要介紹了
PHP_SELF、 SCRIPT_NAME、 REQUEST_URI区别
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
$_SERVER[PHP_SELF], $_SERVER[SCRIPT_NAME], $_SERVER['REQUEST_URI'] 在用法上是非常相似的,他們返回的都是與當(dāng)前正在使用的頁面地址有關(guān)的信息,這里列出一些相關(guān)的例子,幫助確定哪些是在你的腳本最適合的。
$_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
當(dāng)我們使用$_SERVER['PHP_SELF']的時候,無論訪問的URL地址是否有index.php,它都會自動的返回 index.php.但是如果在文件名后面再加斜線的話,就會把后面所有的內(nèi)容都返回在$_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
在所有的返回中都是當(dāng)前的文件名/example/index.php
轉(zhuǎn)載于:https://www.cnblogs.com/zcy_soft/archive/2010/10/16/1853239.html
總結(jié)
以上是生活随笔為你收集整理的PHP_SELF、 SCRIPT_NAME、 REQUEST_URI区别的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 深入delphi编程(转)
- 下一篇: [C语言]关于指针和int型的一道题目