PHP: curl_unescape - Manual (original) (raw)
(PHP 5 >= 5.5.0, PHP 7, PHP 8)
curl_unescape — Decodes the given URL encoded string
Description
This function decodes the given URL encoded string.
Parameters
handle
A cURL handle returned bycurl_init().
string
The URL encoded string to be decoded.
Return Values
Returns decoded string or [false](reserved.constants.php#constant.false) on failure.
Changelog
| Version | Description |
|---|---|
| 8.0.0 | handle expects a CurlHandle instance now; previously, a resource was expected. |
Examples
Example #1 curl_escape() example
`<?php
// Create a curl handle
$ch = curl_init('http://example.com/redirect.php');// Send HTTP request and follow redirections
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_exec($ch);// Get the last effective URL effectiveurl=curlgetinfo(effective_url = curl_getinfo(effectiveurl=curlgetinfo(ch, CURLINFO_EFFECTIVE_URL);
// ie. "http://example.com/show_location.php?loc=M%C3%BCnchen"
// Decode the URL
effectiveurldecoded=curlunescape(effective_url_decoded = curl_unescape(effectiveurldecoded=curlunescape(ch, $effective_url);
// "http://example.com/show_location.php?loc=München"
?>`
Notes
Note:
curl_unescape() does not decode plus symbols (+) into spaces. urldecode() does.
See Also
- curl_escape() - URL encodes the given string
- urlencode() - URL-encodes string
- urldecode() - Decodes URL-encoded string
- rawurlencode() - URL-encode according to RFC 3986
- rawurldecode() - Decode URL-encoded strings
Found A Problem?
There are no user contributed notes for this page.