您好,欢迎光临! 推荐您使用Chrome浏览器访问本站。

PHP取得带参数的URL地址栏的文件及扩展名

方式1:

$fileName=basename($_SERVER[‘ SCRIPT_NAME’]);

方式2:

$fileName = basename($_SERVER[‘REQUEST_URI’]);

$fileName=substr($fileName, 0, strpos($fileName, ‘?’));

方式3:

$fileName=basename($_SERVER[‘PHP_SELF’]);

附:

PHP_SELF、 SCRIPT_NAME、 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

 

参考:

#测试网址:http://localhost/blog/testurl.php?id=5

//获取域名或主机地址
echo $_SERVER[‘HTTP_HOST’].””; #localhost

//获取网页地址
echo $_SERVER[‘PHP_SELF’].””; #/blog/testurl.php

//获取网址参数
echo $_SERVER[“QUERY_STRING”].””; #id=5

//获取用户代理
echo $_SERVER[‘HTTP_REFERER’].””;

//获取完整的url
echo ‘http://’.$_SERVER[‘HTTP_HOST’].$_SERVER[‘REQUEST_URI’];
echo ‘http://’.$_SERVER[‘HTTP_HOST’].$_SERVER[‘PHP_SELF’].’?’.$_SERVER[‘QUERY_STRING’];
#http://localhost/blog/testurl.php?id=5

//包含端口号的完整url
echo ‘http://’.$_SERVER[‘SERVER_NAME’].’:’.$_SERVER[“SERVER_PORT”].$_SERVER[“REQUEST_URI”];
#http://localhost:80/blog/testurl.php?id=5

//只取路径
$url=’http://’.$_SERVER[‘SERVER_NAME’].$_SERVER[“REQUEST_URI”];
echo dirname($url);
#http:

您可能也喜欢