curl_unescape
(PHP 5 >= 5.5.0)
curl_unescape — Decodes the given URL encoded string
Beschreibung
string curl_unescape
( resource
$ch
, string $str
)This function decodes the given URL encoded string.
Parameter-Liste
-
ch -
Ein von curl_init() zurückgegebenes cURL-Handle.
-
str -
The URL encoded string to be decoded.
Rückgabewerte
Returns decoded string Im Fehlerfall wird FALSE zurückgegeben..
Beispiele
Beispiel #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
$effective_url = curl_getinfo($ch, CURLINFO_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);
?>
Anmerkungen
Hinweis:
curl_unescape() does not decode plus symbols (+) into spaces. urldecode() does.
Siehe auch
- curl_escape() - URL-kodiert den angegebenen String
- urlencode() - URL-kodiert einen String
- urldecode() - Dekodiert eine URL-kodierte Zeichenkette
- rawurlencode() - URL-Kodierung nach RFC 3986
- rawurldecode() - Dekodiert URL-kodierte Strings