萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> 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));
}

copyright © 萬盛學電腦網 all rights reserved