最新消息: 新版网站上线了!!!

php json post的方法

  1. $json = file_get_contents('php://input'); 
  2. $obj = json_decode($json); 

更新

 

  1. $data_string = json_encode($data); 
  2.  
  3. $ch = curl_init('http://webservice.local/'); 
  4. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST"); 
  5. curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string); 
  6. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
  7. curl_setopt($ch, CURLOPT_HTTPHEADER, array
  8.         'Content-Type: application/json'
  9.         'Content-Length: ' . strlen($data_string)) 
  10. ); 
  11.  
  12. $result = curl_exec($ch); 
  13. $result = json_decode($result); 
  14. var_dump($result); 

 

转载请注明:谷谷点程序 » php json post的方法