curl_unescape
(PHP 5 >= 5.5.0)
curl_unescape — Decodes the given URL encoded string
Описание
string curl_unescape
( resource
$ch
, string $str
)This function decodes the given URL encoded string.
Список параметров
-
ch
-
Дескриптор cURL, полученный из curl_init().
-
str
-
The URL encoded string to be decoded.
Возвращаемые значения
Returns decoded string или FALSE
в случае возникновения ошибки.
Примеры
Пример #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);
?>
Примечания
Замечание:
curl_unescape() does not decode plus symbols (+) into spaces. urldecode() does.
Смотрите также
- curl_escape() - URL encodes the given string
- urlencode() - URL-кодирование строки
- urldecode() - Декодирование URL-кодированной строки
- rawurlencode() - URL-кодирование строки согласно RFC 3986
- rawurldecode() - Декодирование URL-кодированной строки
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Другие службы
- Клиентская библиотека работы с URL
- curl_close
- curl_copy_handle
- curl_errno
- curl_error
- curl_escape
- curl_exec
- curl_file_create
- curl_getinfo
- curl_init
- curl_multi_add_handle
- curl_multi_close
- curl_multi_exec
- curl_multi_getcontent
- curl_multi_info_read
- curl_multi_init
- curl_multi_remove_handle
- curl_multi_select
- curl_multi_setopt
- curl_multi_strerror
- curl_pause
- curl_reset
- curl_setopt_array
- curl_setopt
- curl_share_close
- curl_share_init
- curl_share_setopt
- curl_strerror
- curl_unescape
- curl_version
Коментарии
404 Not Found