PHP curl_unescape函数


(PHP 5 >= 5.5.0)

curl_unescape — 解码经过URL编码的字符串。

说明

  1. string curl_unescape ( resource $ch , string $str )

解码经过URL编码的字符串。

注意: curl_unescape() 不能解码加号 (+) 为空格, urldecode() 可以。

参数

ch

由 curl_init() 返回的 cURL 句柄。

str

URL 编码的字符串

返回值

返回解码字符串或者在失败时返回 FALSE。

实例

  1. <?php
  2. // 创建一个curl句柄
  3. $ch = curl_init('http://example.com/redirect.php');
  4.  
  5. // 发送 HTTP 请求
  6. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  7. curl_exec($ch);
  8.  
  9. // 获得最后一个有效的URL
  10. $effective_url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
  11. // ie. "http://example.com/show_location.php?loc=M%C3%BCnchen"
  12.  
  13. // 解码URL
  14. $effective_url_decoded = curl_unescape($ch, $effective_url);
  15. // "http://example.com/show_location.php?loc=München"
  16.  
  17. // 关闭句柄
  18. curl_close($ch);
  19. ?>