PHP中使用CURL

Posted 自留记

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP中使用CURL相关的知识,希望对你有一定的参考价值。

对 post 提交的数据进行 http_build_query处理,然后再send出去,能实现更好的兼容性,更小的请求数据包。

<?php
/**
 * PHP发送Post数据
 * @param string $url 请求url
 * @param array/string $params 发送的参数
 * @return array
 */
function http_post_data($url, $params = array())
{
	if (is_array($params))
	{
		$params = http_build_query($params, null, ‘&‘);
	}

	$ch = curl_init();
	curl_setopt($ch, CURLOPT_POST, 1);
	curl_setopt($ch, CURLOPT_URL, $url);
	curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
	$response = curl_exec($ch);
	$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
	curl_close($ch);

	return array($httpCode, $response);
}

$url = "http://blog.snsgou.com";
$data = array(‘a‘ => 1, ‘b‘ => 2, ‘c‘ => 2);
list($returnCode, $returnContent) = http_post_data($url, $data);

以上是关于PHP中使用CURL的主要内容,如果未能解决你的问题,请参考以下文章

postman 自动生成 curl 代码片段

转:PHP中的使用curl发送请求(GET请求和POST请求)

解析php中curl

CentOS yum 命令出现 [Errno 14] curl#6 - &quot;Couldn&#39;t resolve host ...&quot; 的解决方法(代码片段

php: 使用 cURL 获取 html 源代码

有啥方法可以让 curl 连接并让我在输入时输入和发送身体片段?