网址1 - localhost/ocean/
网址2 - localhost/ocean/index.php
$file = basename($_SERVER['PHP_SELF']);
echo $file;
在这两种情况下,结果都是index.php
,这没关系。
现在,我需要获取当前文件的父文件夹。
因此,在这两种情况下,结果应为ocean
。
任何帮助?
答案 0 :(得分:0)
使用basename
DIR
$file = basename(__DIR__);
echo $file; //ocean