|
当前正在执行脚本的文件名,与 document root 相关。举例来说,在 URL 地址为 http://www.jb51.NET/test.php/foo.bar 的脚本中使用 $_SERVER['php_SELF'] 将会得到 /test.php/foo.bar 这个结果。__FILE__ 常量包含当前(例如包含)文件的绝对路径和文件名。
“SCRIPT_NAME”
包含当前脚本的路径。这在页面需要指向自己时非常有用。__FILE__ 包含当前文件的绝对路径和文件名(例如包含文件)。
主要的原因如像:$_SERVER['php_SELF'] ? $_SERVER['php_SELF'] : $_SERVER['SCRIPT_NAME'];
找到更好的原因是:
今天在Dreamhost上安 一套php程序 接的地址都 多出一 cgi-system ,但是程序的config 有 ,查了查 料才 是SCRIPT_NAME和php_SELF不同造成的 。
通常在本 $_SERVER['SCRIPT_NAME'] 跟 $_SERVER['php_SELF'] 大概看不出有什 不同,因 大部分的php不是以CGI模式 行的。
但 DreamHost 上的 php 是以 CGI 方式 行,二者就有明 不同的差 。
echo $_SERVER['SCRIPT_NAME']; // (/cgi-system/php.cgi)
echo $_SERVER['php_SELF']; // (/admin/test.php)
从http://lists.nyphp.org/pipermail/talk/2005-July/015339.html 发现了一个说明。老外说的。
SCRIPT_NAME solves all the problems mentioned
in this thread - it's just the script name, without any extra garbage
that might be tacked on by the user. php_SELF explicitly includes that
extra garbage, so solutions in this thread that involve stripping the
garbage off of php_SELF to make it safe are really, really missing the
point - just use SCRIPT_NAME instead. Please don't use FORM ACTION=”";
according to the spec, what the browser does with that is undefined, so
even if it works in current browsers, it might not work in future ones
php技术:php中$_SERVER[PHP_SELF] 和 $_SERVER[SCRIPT_NAME]之间的区别,转载需保留来源!
郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。