curl_unescape

(PHP 5 >= 5.5.0, PHP 7)
Decodes the given URL encoded string
string curl_unescape ( resource $ch, string $str )

This function decodes the given URL encoded string.

Parameters:
ch

A cURL handle returned by curl_init().

str

The URL encoded string to be decoded.

Returns:

Returns decoded string or FALSE on failure.

Notes:

curl_unescape() does not decode plus symbols (+) into spaces. urldecode() does.

Examples:
curl_escape() example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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
$effective_url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
 
// Decode the URL
$effective_url_decoded = curl_unescape($ch$effective_url);
 
// Close the handle
curl_close($ch);
?>
See also:

curl_escape() -

urlencode() -

urldecode() -

rawurlencode() -

rawurldecode() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.