PHP查询快递信息的方法_php技巧
程序员文章站
2022-04-14 18:33:38
...
本文实例讲述了PHP查询快递信息的方法。分享给大家供大家参考。具体如下:
这里使用快递100物流查询
官方文档中只能返回html的接口 也可以返回json
php代码如下:
复制代码 代码如下:
/**
* @desc 获取快递信息
* @param string $code 快递编码
* @param string $invoice 快递单号
* @return mixed $result(
'status','info','state','data'
)
*/
function getExpressDelivery($code,$invoice){
$result = array('status'=>0,'info'=>'未知错误');
$url = "http://m.kuaidi100.com/query?type={$code}&postid={$invoice}&id=1&valicode=&temp=".rand(1,710);
$body = file_get_contents($url); //FIXME
$body = json_decode($body,true);
$result['status'] = $body['status'] == 200 ? 1 : 0;
$result['info'] = $body['message'];
isset($body['data']) && ($result['state']=$body['state']) && ($result['data'] = $body['data']) ;
return $result;
}
* @desc 获取快递信息
* @param string $code 快递编码
* @param string $invoice 快递单号
* @return mixed $result(
'status','info','state','data'
)
*/
function getExpressDelivery($code,$invoice){
$result = array('status'=>0,'info'=>'未知错误');
$url = "http://m.kuaidi100.com/query?type={$code}&postid={$invoice}&id=1&valicode=&temp=".rand(1,710);
$body = file_get_contents($url); //FIXME
$body = json_decode($body,true);
$result['status'] = $body['status'] == 200 ? 1 : 0;
$result['info'] = $body['message'];
isset($body['data']) && ($result['state']=$body['state']) && ($result['data'] = $body['data']) ;
return $result;
}
希望本文所述对大家的php程序设计有所帮助。
推荐阅读
-
php使用mysql_query查询超大结果集超内存的解决方法,phpmysql_query_PHP教程
-
php查询mssql出现乱码的解决方法_PHP
-
PHP Session 变量的使用方法详解与实例代码_php技巧
-
codeigniter发送邮件并打印调试信息的方法,codeigniter发送邮件_PHP教程
-
解析csv数据导入mysql的方法_php技巧
-
PHP使用DES进行加密与解密的方法详解_php技巧
-
PHP模拟QQ登录的方法_php技巧
-
PHP分多步骤填写发布信息的简单方法实例代码_php实例
-
zen cart新进商品的随机排序修改方法_php技巧
-
php对数组内元素进行随机调换的方法_php技巧