熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

解析PHP 使用curl提交json格式數據

2022-06-13   來源: PHP編程 
本篇文章是對PHP中使用curl提交json格式數據的實現方法進行了詳細的分析介紹需要的朋友參考下   復制代碼 代碼如下:

  
$data = array("name" => "Hagrid" "age" => "");
$data_string = json_encode($data); $ch = curl_init();
curl_setopt($ch CURLOPT_CUSTOMREQUEST "POST");
curl_setopt($ch CURLOPT_POSTFIELDS$data_string);
curl_setopt($ch CURLOPT_RETURNTRANSFERtrue);
curl_setopt($ch CURLOPT_HTTPHEADER array(
ContentType: application/json
ContentLength: strlen($data_string))
);

$result = curl_exec($ch);


From:http://tw.wingwit.com/Article/program/PHP/201311/20865.html
  • 上一篇文章:

  • 下一篇文章:
  • 推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.