php 는 curl 을 사용 하여 post 방식 으로 json 데 이 터 를 제출 합 니 다.

546 단어 jsonPHP컬.
$arrayData = array("name" => "Hagrid", "age" => "36");
$sendJsonData = json_encode($arrayData);
$ch = curl_init('http://127.0.0.1/jietu/test.php');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $sendJsonData);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
		'Content-Type: application/json',
		'Content-Length: ' . strlen($sendJsonData))
);
var_dump(curl_exec($ch));

좋은 웹페이지 즐겨찾기