Php URL Parts Get method (global variable)

Source: Internet
Author: User
Tags url parts
    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's easy to break down the various parts of a URL, and it's easy to take the specified part out: 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.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.