欢迎访问服务器技术网-www.fuwuqijishu.com

PHP curl_unescape函数

PHP fuwuqijishu 2年前 (2022-09-04) 70次浏览 0个评论 扫描二维码
文章目录[隐藏]

PHP curl_unescape函数

PHP cURL参考手册

(PHP 5 >= 5.5.0)

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


说明

string curl_unescape ( resource $ch , string $str )

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

注意:

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


参数

ch

由 curl_init() 返回的 cURL 句柄。

str

URL 编码的字符串


返回值

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


实例

<?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);
// ie. "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);
?>

PHP cURL参考手册

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2213.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900