首页 快递散件下单 快递散件下单示例代码 运费估算[PHP]

运费估算示例代码PHP

作者: 阅读数:1181 上传时间:2025-03-28

运费估算

<?php

require 'curl.func.php';

$appkey = 'your_appkey_here';//你的appkey
$url = "https://api.jisuapi.com/expressorder/freight?appkey=$appkey";
$result = curlOpen($url, ['ssl'=>true, 'post'=>$post]);

$jsonarr = json_decode($result, true);
//exit(var_dump($jsonarr));
if($jsonarr['status'] != 0)
{
    echo $jsonarr['msg'];
    exit();
}

$result = $jsonarr['result'];
echo $result['freight'];

$freightrule = $result['freightrule'];

echo $freightrule['startprice'].' '.$freightrule['startweight'].' '.$freightrule['addedprice'].' '.$freightrule['addedweight'].'
';