亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

第三方接口編寫

Original 2019-07-09 10:27:20 379
abstract:/**** * @param $url * @param $post_data * @return bool|string * 第三方物流接口請求 */function send_post($url,$post_data) {      $postdata = http_build_query($post_d

/****

 * @param $url

 * @param $post_data

 * @return bool|string

 * 第三方物流接口請求

 */

function send_post($url,$post_data) {

 

 

    $postdata = http_build_query($post_data);

    $options = array(

        'http' => array(

            'method' => 'POST',

            'header' => 'Content-type:application/x-www-form-urlencoded',

            'content' => $postdata,

            'timeout' => 15 * 60 // 超時時間(單位:s)

        )

    );

    $context = stream_context_create($options);

    $result = file_get_contents($url, false, $context);

 

    return $result;

}

 

  $order_number="訂單號";

 

  $post_data = array(

      'company_id' => '開放平臺ID',

      'msg_type' => 'TRACEINTERFACE_NEW_TRACES',

      'data' => "[\"$order_number\"]",

      'data_digest' => '簽名'

  );

 

$data =send_post("http://japi.zto.cn/gateway.do",$post_data);

 

echo $data;


Correcting teacher:查無此人Correction time:2019-07-09 14:55:16
Teacher's summary:完成的不錯。php接口,現(xiàn)在作用很大。要好好學(xué)習(xí),繼續(xù)加油

Release Notes

Popular Entries