curl_unescape
(PHP 5 >= 5.5.0, PHP 7, PHP 8)
curl_unescape — 解碼給定的 URL 編碼的字串
說明
curl_unescape(resource
$ch
, string $str
): string該函式解碼給定的 URL 編碼的字串。
參數
-
handle
-
由 curl_init() 返回的 cURL 控制代碼。
-
str
-
需要解碼的 URL 編碼字串
返回值
返回解碼后的字串 或者在失敗時返回 false
。
範例
示例 #1 curl_escape() 示例
<?php
// 建立一個 curl 控制代碼
$ch = curl_init('http://example.com/redirect.php');
// 發送 HTTP 請求並且遵循重定向
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_exec($ch);
// 獲取最後的有效 URL
$effective_url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
// 結果: "http://example.com/show_location.php?loc=M%C3%BCnchen"
// 解碼這個 URL
$effective_url_decoded = curl_unescape($ch, $effective_url);
// "http://example.com/show_location.php?loc=München"
// 關閉控制代碼
curl_close($ch);
?>
註釋
注意:
curl_unescape() 不會將加號 (+) 解碼成空格。而 urldecode() 會。
參見
- curl_escape() - 使用 URL 編碼給定的字串
- urlencode() - 編碼 URL 字串
- urldecode() - 解碼已編碼的 URL 字串
- rawurlencode() - 按照 RFC 3986 對 URL 進行編碼
- rawurldecode() - 對已編碼的 URL 字串進行解碼