curl_unescape

(PHP 5 >= 5.5.0, PHP 7, PHP 8)

curl_unescape解码给定的 URL 编码字符串

描述

curl_unescape(CurlHandle $handle, string $string): string|false

此函数解码给定的 URL 编码字符串。

参数

handle

curl_init() 返回的 cURL 处理。

string

要解码的 URL 编码字符串。

返回值

返回解码后的字符串,如果失败则返回 false

变更日志

版本 描述
8.0.0 handle 现在期望一个 CurlHandle 实例;以前,期望的是一个 resource

示例

示例 #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() 会。

参见

添加说明

用户贡献的说明

此页面没有用户贡献的说明。
To Top