php-亚博电竞手机版
php_self、script_name、request_uri三者有什么区别?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。
$_server[php_self], $_server[script_name], $_server['request_uri'] 在用法上是非常相似的,他们返回的都是与当前正在使用的页面地址有关的信息,这里列出一些相关的例子,帮助确定哪些是在你的脚本最适合的。
$_server['php_self']
复制代码 代码如下:
http://www.yoursite.com/example/ — – — /example/index.phphttp://www.yoursite.com/example/index.php — – — /example/index.phphttp://www.yoursite.com/example/index.php?a=test — – — /example/index.phphttp://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.phphttp://www.yoursite.com/example/index.php?a=test — – — /example/index.php?a=testhttp://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.phphttp://www.yoursite.com/example/index.php — – — /example/index.phphttp://www.yoursite.com/example/index.php — – — /example/index.phphttp://www.yoursite.com/example/index.php/dir/test — – — /example/index.php
在所有的返回中都是当前的文件名/example/index.php
看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注恰卡编程网行业资讯频道,感谢您对恰卡编程网的支持。