Get parent directory of running script

后端 未结 13 2039
攒了一身酷
攒了一身酷 2020-11-30 04:20

In PHP, what would be the cleanest way to get the parent directory of the current running script relative to the www root? Assume I have:

$_         


        
13条回答
  •  粉色の甜心
    2020-11-30 05:01

    Fugly, but this will do it:

    substr($_SERVER['SCRIPT_NAME'], 0, strpos($_SERVER['SCRIPT_NAME'],basename($_SERVER['SCRIPT_NAME'])))
    

提交回复
热议问题