我试图发送到我的api网站,以下Json有一条记录。 它工作正常,但我想发送多条记录,我该怎么做?
后来我想读取一个txt并制作一个包含所有记录的json。
<?php
//API URL
$url = 'http://mysitexder.net/receiveJson.php';
//create a new cURL resource
$ch = curl_init($url);
//setup request to send json via POST
$data = array(
'cod' => '321',
'name' => 'Jane',
'address' => 'Route 123456'
);
$payload = json_encode(array("user" => $data));
//attach encoded JSON string to the POST fields
curl_setopt($ch, CURLOPT_POSTFIELDS, $payload);
//set the content type to application/json
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type:application/json'));
//return response instead of outputting
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
//execute the POST request
$result = curl_exec($ch);
//close cURL resource
curl_close($ch);
答案 0 :(得分:0)
发送二维数组:
$data1 = array(
'cod' => '321',
'name' => 'Jane',
'address' => 'Route 123456'
);
$data2 = array(
'cod' => '555',
'name' => 'John',
'address' => '123 Main St'
);
$payload = json_encode(array('users' => array($data1, $data2)));
后来我想读取一个txt并制作一个包含所有记录的json。
很难说出你的意思。但是你应该以任何你想要的方式解析文本(例如每一行都是一条记录),从中创建一个PHP数组,然后调用json_encode()
。