PHP가 URL을 구문 분석하는 여러 가지 방법
1. $_SERVER 내장 배열 변수를 사용하세요
방문:
http://localhost/test.php?m=admin&c=index&a = lists & catid = 1 & page = 1//URL的参数 echo $_SERVER['QUERY_STRING']; 返回: m=admin&c=index&a=lists&catid=1&page=1 //包含文件名 echo $_SERVER["REQUEST_URI"];로그인 후 복사
return :
/test.php?m=admin&c=index&a=lists&catid=1&page=1
2
echo ""; $url = 'http://localhost/test.php?m=admin&c=index&a=lists&catid=1&page=1#top'; var_export(pathinfo($url));로그인 후 복사
array ( 'dirname' => 'http://localhost', 'basename' => 'test.php?m=admin&c=index&a=lists&catid=1&page=1#top', 'extension' => 'php?m=admin&c=index&a=lists&catid=1&page=1#top', 'filename' => 'test', )
echo ""; $url = 'http://localhost/test.php?m=admin&c=index&a=lists&catid=1&page=1#top'; var_export(parse_url($url));로그인 후 복사
array ( 'scheme' => 'http', 'host' => 'localhost', 'path' => '/test.php', 'query' => 'm=admin&c=index&a=lists&catid=1&page=1', 'fragment' => 'top', )
echo ""; $url = 'http://localhost/test.php?m=admin&c=index&a=lists&catid=1&page=1#top'; var_export(basename($url));로그인 후 복사
test.php?m=admin&c=index&a=lists&catid=1&page=1#top
echo ""; $url = 'http://localhost/test.php?m=admin&c=index&a=lists&catid=1&page=1#top'; preg_match_all("/(\w+=\w+)(#\w+)?/i",$url,$match); var_export($match);로그인 후 복사
반환:
array ( 0 => array ( 0 => 'm=admin', 1 => 'c=index', 2 => 'a=lists', 3 => 'catid=1', 4 => 'page=1#top', ), 1 => array ( 0 => 'm=admin', 1 => 'c=index', 2 => 'a=lists', 3 => 'catid=1', 4 => 'page=1', ), 2 => array ( 0 => '', 1 => '', 2 => '', 3 => '', 4 => '#top', ), )
/** * 将字符串参数变为数组 * @param $query * @return array */ function convertUrlQuery($query) { $queryParts = explode('&', $query); $params = array(); foreach ($queryParts as $param) { $item = explode('=', $param); $params[$item[0]] = $item[1]; } return $params; } /** * 将参数变为字符串 * @param $array_query * @return string */ function getUrlQuery($array_query) { $tmp = array(); foreach ($array_query as $k => $param) { $tmp[] = $k . '=' . $param; } $params = implode('&', $tmp); return $params; }
"
위 내용은 PHP는 URL을 어떻게 구문 분석합니까? URL을 구문 분석하는 5가지 방법 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!