array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'function.curl-unescape.php', 1 => 'curl_unescape', 2 => 'Decodes the given URL encoded string', ), 'up' => array ( 0 => 'ref.curl.php', 1 => 'Функції cURL', ), 'prev' => array ( 0 => 'function.curl-strerror.php', 1 => 'curl_strerror', ), 'next' => array ( 0 => 'function.curl_upkeep.php', 1 => 'curl_upkeep', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/curl/functions/curl-unescape.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 5 >= 5.5.0, PHP 7, PHP 8)
curl_unescape — Decodes the given URL encoded string
This function decodes the given URL encoded string.
chcURL-дескриптор, якого повертає curl_init().
stringThe URL encoded string to be decoded.
Returns decoded string або false в разі помилки.
| Версія | Опис |
|---|---|
| 8.0.0 |
handle тепер має бути примірником класу
CurlHandle; раніше очікувався resource.
|
Приклад #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"
?>Зауваження:
curl_unescape() does not decode plus symbols (+) into spaces. urldecode() does.