Share url functions with Chinese characters in php

Source: Internet
Author: User
This article mainly introduces the sharing of url functions with Chinese characters in php. This article provides the implementation code directly, focusing on the use of rawurlencode functions. For more information, see, when writing a webpage application, you may encounter conflicts between Chinese characters and other characters. for example, some url links contain Chinese characters, when wget/curl/file_get_contents is used to obtain information, it will directly hit a large "404", which will be speechless.

Here we have written a small function to solve this problem, but it is limited to parsing in the path. you can check the manual for the related function usage.

The code is as follows:


Function urlConvert ($ url ){
$ PathArr = array ();
$ Modules = parse_url ($ url );
$ Path = $ modules ['path'];
$ Patheatmap = explode ('/', $ path );

Foreach ($ patheatmap as $ row ){
$ PathArr [] = rawurlencode ($ row );
}
$ UrlNew = $ modules ['scheme ']. ": //". $ modules ['host']. implode ('/', $ pathArr );
Return $ urlNew;
}

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.