主页 Swift UNIX C Assembly Go Plan 9 Web MCU Research Non-Tech

How to get query of URLs in PHP

2022-07-10 | Web | #Words: 232

PHP, like Python, provides the function parse_url(string $url, int $component = -1), which is very convenient.

This function takes two parameters:

  1. url: This parameter is the URL to be parsed (in string format).
  2. component: Use PHP_URL_SCHEME, PHP_URL_HOST, PHP_URL_PORT, PHP_URL_USER, PHP_URL_PASS, PHP_URL_PATH, PHP_URL_QUERY, PHP_URL_FRAGMENT to specify the output URL part (except PHP_URL_PORT is int type, others are output as string type).
  3. If there is no component, this parameter defaults to -1, and an array will be output.

Give some examples to help understanding. Assume the URL is https://www.example.com/?keyword=abc&id=12. code show as below:

<?php
$url="https://www.example.com/?keyword=abc&id=12";

//Display the formatted array
var_dump(parse_url($url));
//Output the content corresponding to 'query' of the formatted array
echo parse_url($url)['query'];
	
//Newline
echo '<br>';
	
//The content specified here is the host part.
echo parse_url($url,PHP_URL_HOST);
?>

The output content is as follows:

array(4) {
   ["scheme"]=>
   string(5) "https"
   ["host"]=>
   string(15) "www.example.com"
   ["path"]=>
   string(1) "/"
   ["query"]=>
   string(17) "keyword=abc&id=12"
}
keyword=abc&id=12
www.example.com

​I hope these will help someone in need~