如何获取主文件夹的根目录?例如我在这个位置运行文件:
public_html/admin/user/etc/index.php
我想包含来自的文件
public_html/includes/user/etc/function.php
所以我想做这样的事情:
include(get_first_default_folder().'includes/user/etc/function.php');
代替:
include('../../../includes/user/etc/function.php');