首頁 > 後端開發 > php教程 > php post json數據

php post json數據

WBOY
發布: 2016-07-25 08:43:14
原創
1479 人瀏覽過
  1. function http_post_data($url, $data_string) {
  2. $ch = curl_init();
  3. curl_setopt($ch, CURLOPT_POST, 1);
  4. curl_setopt($ch, CURLOPT_URL, $url);
  5. curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
  6. curl_setopt($ch, CURLOPT_HTTPHEADER, array(
  7. 'Content-Type: application/json; charset=utf-8',
  8. 'Content-Length: ' . strlen($data_string))
  9. );
  10. ob_start();
  11. curl_exec($ch);
  12. $return_content = ob_get_contents();
  13. ob_end_clean();
  14. $return_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  15. return array($return_code, $return_content);
  16. }
  17. $url = "http://www.xxxx.com";
  18. $data = json_encode(array('cmd'=>"Query_Ranking_Sys",'group'=>1,'room'=>0,'name'=>"RoomSvr",'value'=>array(0=>array('key'=>5,'beginindex'=>0,'count'=>10))));
  19. list($return_code, $return_content) = http_post_data($url, $data);
复制代码

php、post、json


相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板