dismiss Step into the future! Click here to switch to the beta php.net site
downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

curl_version> <curl_strerror
[edit] Last updated: Fri, 28 Jun 2013

view this page in

curl_unescape

(PHP 5 >= 5.5.0)

curl_unescapeDecodes the given URL encoded string

Description

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.

Return Values

Returns decoded string or FALSE on failure.

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($chCURLOPT_FOLLOWLOCATION1);
curl_exec($ch);

// Get the last effective URL
$effective_url curl_getinfo($chCURLINFO_EFFECTIVE_URL);
// ie. "http://example.com/show_location.php?loc=M%C3%BCnchen"

// Decode the URL
$effective_url_decoded curl_unescape($ch$effective_url);
// "http://example.com/show_location.php?loc=München"

// Close the handle
curl_close($ch);
?>

Notes

Note:

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

See Also



add a note add a note User Contributed Notes curl_unescape - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites