• 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.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'] 在使用方法上是很相似的。他们返回的都是与当前正在使用的页面地址有关的信息。这里列出一些相关的样例,帮助确定哪些是在你的脚本最适合的。

    $_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

  • 相关阅读:
    ethcoax_net 模型学习笔记(翻译自OPNET help)
    第一堂课学习
    (2)Dojo学习之模块化
    金融业的电子商务之路
    浅谈PE(私募股权)业务及系统建设:01. 业务介绍
    Don’t Be Afraid to Break Things
    基于Asp.net MVC的系统架构
    思考项目成功的关键因素
    金融业务系统中的数据库事务:01. 五类问题
    金融业务系统中的数据库事务:02. 解决问题
  • 原文地址:https://www.cnblogs.com/bhlsheji/p/5137114.html
Copyright © 2020-2023  润新知