<?php require_once 'curl.func.php'; $appkey = 'your_appkey_here';//你的appkey $url = "https://api.jisuapi.com/express/query?appkey=$appkey"; $type = 'sfexpress'; $number = '931658943036'; $post = array('type'=>$type, 'number'=>$number ); $result = curlOpen($url, array('post'=>$post)); $jsonarr = json_decode($result, true); //exit(var_dump($jsonarr)); if($jsonarr['status'] != 0) { echo $jsonarr['msg']; exit(); } $result = $jsonarr['result']; if($result['issign'] == 1) echo '已签收'.'
'; else echo '未签收'.'
'; foreach($result['list'] as $val) { echo $val['time'].' '.$val['status'].'
'; }
© 2015-2024 杭州极速互联科技有限公司 版权所有 浙ICP备17047587号-4 浙公网安备33010502005096 增值电信业务经营许可证:浙B2-20190875