Home  >  Article  >  Backend Development  >  How to get each part of php URL (global variables)

How to get each part of php URL (global variables)

WBOY
WBOYOriginal
2016-07-27 16:56:181261browse
  1. $url = "http://www.electrictoolbox.com/php-extract-domain-from-full-url/";
  2. $parts = parse_url($url);
Copy code

Output: Array ( [scheme] => http [host] => www.electrictoolbox.com [path] => /php-extract-domain-from-full-url/ )

Example 2:

  1. $url = 'http://username:password@hostname/path?arg=value#anchor';
  2. print_r(parse_url($url));
  3. echo parse_url($url , PHP_URL_PATH);
  4. ?>
Copy code

output: Array ( [scheme] => http [host] => hostname [user] => username [pass] => password [path] => /path [query] => arg=value [fragment] => anchor )

It is easy to decompose the various parts of a URL, and it is also easy to extract the specified parts: echo parse_url($url, PHP_URL_PATH); In the second parameter, set the following parameters: PHP_URL_SCHEME, PHP_URL_HOST, PHP_URL_PORT, PHP_URL_USER, PHP_URL_PASS, PHP_URL_PATH, PHP_URL_QUERY or PHP_URL_FRAGMENT.



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn