duanjian3338 2010-03-31 18:29
浏览 55
已采纳

php使用变量提取完整的URL

Using Php I would like to extract the current Url of a page including all variables attached to it. $_SERVER['PHP_SELF'] only return the url without the variable . any idea what function I need.

example : www.site.com/?v1=xyz&v2=123

using $_SERVER['PHP_SELF'] I get only : www.site.com as opposed to the whole url. using $_GET[] individually is not an opton since I am not sure what variable are attached to the URL.

thank you

  • 写回答

5条回答 默认 最新

  • dongqie5529 2010-03-31 18:33
    关注

    You could output the content of the $_SERVER super-global variable : there are many interesting things in there ;-)


    For example, calling a page with an URL like this :

    http://localhost/temp/temp.php?a=10&b=glop
    

    And using :

    var_dump($_SERVER);
    

    I get at least :

    array
      ...
      'HTTP_HOST' => string 'localhost' (length=9)
      ...
      'REQUEST_METHOD' => string 'GET' (length=3)
      'QUERY_STRING' => string 'a=10&b=glop' (length=11)
      'REQUEST_URI' => string '/temp/temp.php?a=10&b=glop' (length=26)
      'SCRIPT_NAME' => string '/temp/temp.php' (length=14)
      'PHP_SELF' => string '/temp/temp.php' (length=14)
      'REQUEST_TIME' => int 1270060299
    


    In there, I suppose at least those could interest you :

    • $_SERVER['QUERY_STRING'] : contains the whole query string ; i.e. the list of all parameters and their values
    • $_SERVER['REQUEST_URI'] : contains the requested URI -- including the parameters
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?

悬赏问题

  • ¥20 基于MSP430f5529的MPU6050驱动,求出欧拉角
  • ¥20 Java-Oj-桌布的计算
  • ¥15 powerbuilder中的datawindow数据整合到新的DataWindow
  • ¥20 有人知道这种图怎么画吗?
  • ¥15 pyqt6如何引用qrc文件加载里面的的资源
  • ¥15 安卓JNI项目使用lua上的问题
  • ¥20 RL+GNN解决人员排班问题时梯度消失
  • ¥60 要数控稳压电源测试数据
  • ¥15 能帮我写下这个编程吗
  • ¥15 ikuai客户端l2tp协议链接报终止15信号和无法将p.p.p6转换为我的l2tp线路