How to use Parse_url function in PHP

Source: Internet
Author: User

PHP in a useful function parse_url, especially convenient for the analysis of information capture, this article is mainly to share with you in PHP Parse_url function use method, I hope to help everyone.

As an example,

Code

$url = "http://www.electrictoolbox.com/php-extract-domain-from-full-url/"; $parts = Parse_url ($url);

Results

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

Code

<?php $url = ' http://username:password@hostname/path?arg=value#anchor '; Print_r (Parse_url ($url)); Echo Parse_url ($url, php_url_path);?>

Results

Array (Scheme) + HTTP [host] + hostname [user] = username [pass] = password [path] =/path [query] = > arg=value [Fragment] = anchor)

Can see that it is easy to break out the parts of a URL, which is easy if you want to take the specified part, such as
Echo Parse_url ($url, Php_url_path); The
is 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.