Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要 php-apache 中的变量$_SERVER['SCRIPT_NAME']用于 PHP-CGI。
$_SERVER['SCRIPT_NAME']
我想将 php-apache 的所有变量用于 php-cgi 或一个表比较 apache 和 cgi 之间的变量。
在 PHP-CGI 中,$_SERVER['SCRIPT_NAME']变量总是等于'php.cgi'.
'php.cgi'
为了获得 的等价物$_SERVER['SCRIPT_NAME'],您应该使用__FILE__和的组合basename()(取自此处)
__FILE__
basename()
有关作为 Apache 模块的 PHP 与 PHP-CGI 之间的差异列表,请查看此处。
似乎这是唯一在两种环境中表现不同的$_SERVER['SCRIPT_NAME']服务器变量(谈论)。$_SERVER
$_SERVER