curl传入json(curl 上传 文件)

发布时间:2023-12-08

curl传入json(curl 上传 文件)

更新:2022-11-13 08:51

本文目录一览:

  1. 如何用curl post 一段包含中文json的文本到服务器
  2. 如何使用curl将数组放入json对象
  3. windows下使用curl利用post发送json数据时注意事项
  4. php用curl的post方法传递json包的时候,接受方是怎么获取的呢
  5. 为什么要使用curl传输json

如何用curl post 一段包含中文json的文本到服务器

一般中文json_encode之后会变成\uxxxx的格式了,只要使用正规的json_encode处理,不需要考虑中文问题。 至于如何post数据到服务器,需要设定header,参考代码如下:

#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;

服务端需要使用$data = file_get_contents('php://input');获取数据。 更多PHP cURL内容请参考我的博客《PHP cURL实现模拟登录与采集使用方法详解教程》

如何使用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字符串转化为数组

windows下使用curl利用post发送json数据时注意事项

在window中linux格式下的单引号要改成双引号,json格式数据中双引号要加\转义。

php用curl的post方法传递json包的时候,接受方是怎么获取的呢

假设POST的数据为:{"data":"abc"} POST参数为:data 同样以PHP为例,接受并处理请求的相关代码如下:

extract($_POST); // 将数组中的key摊成变量,并导入key对应的值
if (!empty($data)) {
    $data = json_decode($data); // json 字符串解码成 json 数据
    var_dump($data); // 打印 json 数据
    // 输出结果
    object(stdClass)[1]
    public 'data' = string 'abc' (length=3)
}

为什么要使用curl传输json

//使用curl库,以post方式向服务器发送json数据
//json数据的组合可以参考jsoncpp库,也可以按json格式自己组合字符串
//注意事项,以下代码不可以多线程执行,如果多线程执行,需要加锁进行控制,否则会运行崩溃

#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, "");
            // 设置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;
}