Php/docs/function.curl-unescape
来自菜鸟教程
curl_unescape
(PHP 5 >= 5.5.0, PHP 7)
curl_unescape — 解码给定的 URL 编码的字符串
说明
curl_unescape
( resource $ch
, string $str
) : string
该函数解码给定的 URL 编码的字符串。
返回值
返回解码后的字符串 或者在失败时返回 false
。
范例
Example #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%22// 解码这个 URL$effective_url_decoded = curl_unescape($ch, $effective_url);// "http://example.com/show_location.php?loc=München%22// 关闭句柄curl_close($ch);?>
注释
Note:
curl_unescape() 不会将加号 (+) 解码成空格。而 urldecode() 会。
参见
- curl_escape() - 使用 URL 编码给定的字符串
- urlencode() - 编码 URL 字符串
- urldecode() - 解码已编码的 URL 字符串
- rawurlencode() - 按照 RFC 3986 对 URL 进行编码
- rawurldecode() - 对已编码的 URL 字符串进行解码