Get parent directory of running script

后端 未结 13 2052
攒了一身酷
攒了一身酷 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:12

    This is also a possible solution

    $relative = '/relative/path/to/script/';
    $absolute = __DIR__. '/../' .$relative;
    

提交回复
热议问题