程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> PHP通過http post發送json數據

PHP通過http post發送json數據

編輯:PHP綜合

通過http post發送json數據

function http_post_data($url, $data_string) {

    $ch = curl_init();
    
    curl_setopt($ch, CURLOPT_POST, 1);
    
    curl_setopt($ch, CURLOPT_URL, $url);
    
    curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
    
    curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    
    'Content-Type: application/json; charset=utf-8',
    
    'Content-Length: ' . strlen($data_string))
    
    );

    ob_start();
    
    curl_exec($ch);
    
    $return_content = ob_get_contents();
    
    ob_end_clean();
    
    $return_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    
    return array($return_code, $return_content);

}

$url  = "http://www.xx.com";

$data = json_encode(array('a'=>1, 'b'=>2));

list($return_code, $return_content) = http_post_data($url, $data);
*
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved