当前位置:编程学习 > php >>

php 取服务器文档根路径

php教程 取服务器文档根路径

/**
 * 取服务器文档根路径
 * @return string
 */
function getRootPath() {
 $sRealPath = realpath('./');
 $sSelfPath = $_SERVER['PHP_SELF'];
 $sSelfPath = substr( $sSelfPath, 0, strrpos( $sSelfPath, '/' ));
 return substr($sRealPath, 0, strlen($sRealPath) - strlen($sSelfPath));
}

补充:Php教程,Php入门
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,