PHP7中文手册2018 带注释 最新chm版
- $json = file_get_contents('php://input');
- $obj = json_decode($json);
更新
- $data_string = json_encode($data);
- $ch = curl_init('http://webservice.local/');
- curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
- curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($ch, CURLOPT_HTTPHEADER, array(
- 'Content-Type: application/json',
- 'Content-Length: ' . strlen($data_string))
- );
- $result = curl_exec($ch);
- $result = json_decode($result);
- var_dump($result);
转载请注明:谷谷点程序 » php json post的方法