Summary of url processing functions in php. There are many url processing functions in php, such as http_build_query, compact, urldecode, urlencode, parse_url, rawurldecode, and so on. Http_build_query (PHP5) http_build_query generate URL-there are many url processing functions in php, such as: http_build_query, compact, urldecode, urlencode, parse_url, rawurldecode, and so on.
Http_build_query
(PHP 5) http_build_query-request string generated after URL-encode
| The code is as follows: |
|
$ Data = array ('foo' => 'bar ', 'Baz' => 'boom ', 'Cow' => 'milk ', 'Php' => 'HyperText processor '); echo http_build_query ($ data); // foo = bar & baz = boom & cow = milk & php = hypertext + processor ?> |
Compact
Array compact (mixed $ varname [, mixed $...])
(PHP 4, PHP 5) compact-create an array, including variable names and their values
| The code is as follows: |
|
$ City = "San Francisco "; $ State = "CA "; $ Event = "SIGGRAPH "; $ Result = compact ("city", "state", "event "); // Array ('city' => '"San Francisco"', 'state' => 'CA', 'event' => "SIGGRAPH ") ?> ------------- $ Qs = compact ('Vince ', 'city', 'name '); Foreach ($ qs as $ key => $ value ){ If (! $ Value ){ Unset ($ qs [$ key]); } } $ Url = 'something/search /? '. Http_build_query ($ qs ); |
Urldecode, urlencode
The following describes the introduction and examples.
Parse_url ($ str url );
Convert a url into an array
| The code is as follows: |
|
*/ Print_r (parse_url ("www. bKjia. c0m"); // Parse the url and output the returned array /* |
Returns a string in special url format to a normal string.
Syntax: string rawurldecode (string str );
Return value: string
Function type: encoding
Description
This function decodes strings. Parses the string from the special format of the url into a normal string. For detailed encoding and decoding information and specification files, refer to rfc 1738.
| The code is as follows: |
|
*/ Echo rawurldecode ('foo % 20bar % 40baz'); // output foo bar @ baz /* String rawurlencode (string str) |
Returns a string. all non-alphanumeric characters except-_. in this string will be replaced with a semicolon (%) followed by two hexadecimal numbers. This encoding is described in rfc 1738 to protect the original characters from being interpreted as special url delimiters and protect the url format to prevent them from being transmitted to media (like some email systems) use character conversion. For example, if you want to include a password in an ftp url:
| The code is as follows: |
|
*/ $ Str = "http://www.bKjia. c0m"; // defines a string $ Result = rawurlencode ($ str); // Encode the specified string Echo $ result; /* Urldecode () Url decoding * /// Output result $ Str = "http % 3a % 2f % 2fwww. bKjia. c0m "; $ Result = urldecode ($ str ); Echo $ result; /* Urlencode () Url encoding */ $ Str = "http://www.bKjia. c0m"; // defines a string $ Result = urlencode ($ str); // Encode the specified string Echo $ result; // output result |
Bytes. Http_build_query (PHP 5) http_build_query generate URL -...