本文目录一览:
- 1、如何用curl post 一段包含中文json的文本到服务器
- 2、如何用php调用外部接口json数据
- 3、为什么要使用curl传输json
- 4、Curl命令详解
- 5、如何使用curl将数组放入json对象
如何用curl post 一段包含中文json的文本到服务器
我的博客《PHP cURL实现模拟登录与采集使用方法详解》第十一点发送与获取json数据对此类问题做了详细的讲解,下面是代码示例:
?php
#json数据
$url = '';
$data = '{"a":"b"}';
$length = strlen($data);
$header = array(
'Content-Length: ' . $length, //不是必需的
'Content-Type: text/json',
);
$ch = curl_init($url); //初始化curl
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$content = curl_exec($ch); //执行并存储结果
curl_close($ch);
echo $content;
#\n分割数据
$data = [
'name:Zjmainstay',
'website:',
];
$data = implode("\n", $data);
#分割数据
$data = 'name:Zjmainstaywebsite:';
更多详情,包括服务端如何接收此类数据,请查看博客:
如何用php调用外部接口json数据
两种比较简单的方法:
1、使用curl
$url = "";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT , 30);
$output = curl_exec($ch);
curl_close($ch);
echo $output;
2、使用file_get_contents
$output = file_get_contents($url);
echo $output;
3 、使用socket 也是可以的
为什么要使用curl传输json
//使用curl库,以post方式向服务器发送json数据
//json数据的组合可以参考jsoncpp库,也可以按json格式自己组合字符串
//注意事项,以下代码不可以多线程执行,如果多线程执行,需要加锁进行控制,否则会运行崩溃
[cpp] view plain copy
#include curl/curl.h
#include string
#include exception
int main(int argc, char *argv[])
{
char szJsonData[1024];
memset(szJsonData, 0, sizeof(szJsonData));
std::string strJson = "{";
strJson += "\"user_name\" : \"test\",";
strJson += "\"password\" : \"test123\"";
strJson += "}";
strcpy(szJsonData, strJson.c_str());
try
{
CURL *pCurl = NULL;
CURLcode res;
// In windows, this will init the winsock stuff
curl_global_init(CURL_GLOBAL_ALL);
// get a curl handle
pCurl = curl_easy_init();
if (NULL != pCurl)
{
// 设置超时时间为1秒
curl_easy_setopt(pCurl, CURLOPT_TIMEOUT, 1);
// First set the URL that is about to receive our POST.
// This URL can just as well be a
// https:// URL if that is what should receive the data.
curl_easy_setopt(pCurl, CURLOPT_URL, "");
//curl_easy_setopt(pCurl, CURLOPT_URL, "");
// 设置http发送的内容类型为JSON
curl_slist *plist = curl_slist_append(NULL,
"Content-Type:application/json;charset=UTF-8");
curl_easy_setopt(pCurl, CURLOPT_HTTPHEADER, plist);
// 设置要POST的JSON数据
curl_easy_setopt(pCurl, CURLOPT_POSTFIELDS, szJsonData);
// Perform the request, res will get the return code
res = curl_easy_perform(pCurl);
// Check for errors
if (res != CURLE_OK)
{
printf("curl_easy_perform() failed:%s\n", curl_easy_strerror(res));
}
// always cleanup
curl_easy_cleanup(pCurl);
}
curl_global_cleanup();
}
catch (std::exception ex)
{
printf("curl exception %s.\n", ex.what());
}
return 0;
}
Curl命令详解
-#, --progress-bar
显示进度条
-b, --cookie name=data
使用cookie。如果没有 = , 则表示cookie文件路径 (参考 -c )
-c, --cookie-jar file name
response的cookie保存路径
-d, --data data
POST请求数据
-f, --fail
忽略错误信息 (不显示返回的HTML错误信息)
-F, --form name=content
表单数据
-H, --header header
设置请求Header
-i, --include
输出请求Header信息
-I, --head
只显示Header信息
-k, --insecure
允许不安全链接
-L, --location
Follow redirects.
-o, --output file
输出信息保存到指定文件中。可与 --create-dirs 一起使用,自动创建文件路径
-O, --remote-name
输出信息写到文件中,文件名同服务器端的文件名 (只能写入到当前目录)
-s, --silent
静默模式。与 -S 一起用,强制输出errors信息
-v, --verbose
显示更多信息(用于调试).
-w, --write-out format
请求结果后追加内容。例如, -w "\n" 可以在输出结果后追加一个换行符。可以把 -w "\n" 添加到 ~/.curlrc 文件中,这样每次执行结果后都自动追加换行符(默认curl返回内容最后缺少换行符,显示不友好)
-X, --request
请求方法类型,POST、GET、PUT等
使用 POST 或 PUT 请求时, 可用 Content-Type 指定两种数据格式:
curl默认为表单格式。如果使用json格式,需要手动设置header。
对于 POST 和 PUT 请求, 以下是通用参数:
application/x-www-form-urlencoded 为默认值:
等效于:
也可以使用数据文件:
或使用数据文件:
如何使用curl将数组放入json对象
$ch = curl_init(); //初始化curl
curl_setopt($ch, CURLOPT_URL, ORDERPOSTURL); //抓取指定网页
curl_setopt($ch, CURLOPT_HEADER, 0); //设置header
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //设置是否返回信息
curl_setopt($ch, CURLOPT_POST, 1); //post提交方式
curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);//发送数据
$response = curl_exec($ch); //接收返回信息
if (curl_errno($ch)) {
//出错则记录错误信息
Logger::getLogger("reqLogger")-error("错误信息:" . curl_error($ch));
}
curl_close($ch); //关闭curl链接
$obj=json_decode($myLogger);//json字符串转化为对象
$arry=json_decode($response,true);//json字符串转化为数组