Heim > Fragen und Antworten > Hauptteil
$_SERVER['PHP_SELF']; Ich weiß nicht, was letzteres PHP_SELF bedeutet
Chen2022-01-04 15:39:02
$_SERVER['PHP_SELF'] 当前执行脚本的文件名,与 document root 有关。
例如,在地址为 http://example.com/test.php/foo.bar 的脚本中使用 $_SERVER['PHP_SELF'] 将得到 /test.php/foo.bar。
https://www.runoob.com/php/php-superglobals.html
Chen2022-01-04 15:37:32
$_SERVER['PHP_SELF']
当前执行脚本的文件名,与 document root 有关。
例如,在地址为 http://example.com/test.php/foo.bar 的脚本中使用 $_SERVER['PHP_SELF'] 将得到 /test.php/foo.bar。
https://www.runoob.com/php/php-superglobals.html