public static function getCanonicalURIPath($path) { //空路径设置为'/' if (empty($path)) { return '/'; } else { //所有的uri必须以'/'开头 if ($path[0] == '/') { return HttpUtil::urlEncodeExceptSlash($path); } else { return '/' . HttpUtil::urlEncodeExceptSlash($path); } } }
public static function getCanonicalURIPath($path) { //empty path '/' if (empty($path)) { return '/'; } else { //Uri should begin with slash '/' if ($path[0] == '/') { return HttpUtil::urlEncodeExceptSlash($path); } else { return '/' . HttpUtil::urlEncodeExceptSlash($path); } } }