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

PHP curl_escape函数

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

PHP curl_escape函数

PHP cURL参考手册

(PHP 5 >= 5.5.0)

curl_escape — 对给定的字符串进行URL编码。


说明

string curl_escape ( resource $ch , string $str )

该函数对给定的字符串进行URL编码» RFC 3986。


参数


ch

由 curl_init() 返回的 cURL 句柄。


str

编码字符串


返回值

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


实例

<?php
// 创建一个cURL句柄
$ch = curl_init();

// 编码GET参数
$location = curl_escape($ch, 'Hofbräuhaus / München');
// Result: Hofbr%C3%A4uhaus%20%2F%20M%C3%BCnchen

// 比较编码后的URL
$url = "http://example.com/add_location.php?location={$location}";
// Result: http://example.com/add_location.php?location=Hofbr%C3%A4uhaus%20%2F%20M%C3%BCnchen

// 发送HTTP请求并关闭句柄
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_exec($ch);
curl_close($ch);
?>

PHP cURL参考手册

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

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

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

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2217.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