$php_self = isset($_SERVER['PHP_SELF']) ? $_SERVER['PHP_SELF'] : $_SERVER['SCRIPT_NAME'];
if ('/' == substr($php_self, -1)){
$php_self .= 'index.php';
}
define('PHP_SELF', $php_self);
如果
echo basename(PHP_SELF)
顯示為:index.php
如果
echo basename(PHP_SELF,'.php')
顯示為:index
您可能感興趣的文章
- php在數組中查找某個值是否存在(in_array(),array_search(),array_key_exists())
- phpMyAdmin Cannot start session without errors錯誤解決辦法
- php提示Maximum execution time of 30 seconds exceeded...錯誤的解決辦法
- PHP報Fatal error Allowed memory size of...內存不足的錯誤應該如何解決
- PHP 字符串轉義函數(addslashes,stripslashes)詳解
- php提示PHP Warning: date(): It is not safe to rely on the......錯誤的解決辦法
- PHP中跳出多重循環使用break,continue,goto,return,exit的用法和區別
- php字符串替換函數str_replace速度比preg_replace快