获取根文件夹的相对路径
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取根文件夹的相对路径相关的知识,希望对你有一定的参考价值。
function rel_path($root=NULL) { // Get script name if exists $cur_file = $_SERVER["SCRIPT_NAME"]; // Remove script name // Split at specified root folder if($root != NULL) { $tmp = $tmp[1]; } // Make windows-friendly // Create path array $rel_path = NULL; if ($tmp[$i] != '') { $rel_path .= '../'; } } if ($rel_path != NULL) { } else { $rel_path = '.'; } return $rel_path; }
以上是关于获取根文件夹的相对路径的主要内容,如果未能解决你的问题,请参考以下文章