接口地址:http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=手机号码,返回JSON。
一、编辑/includes/lib_common.php,添加归属地查询函数
代码如下 | 复制代码 |
/** * 获取手机号码归属地和运营商 * * @param string $mobile 手机号码 * @return array */ function get_mobile_area($mobile) { $result = array('province'=>'', 'catName'=>''); //province-归属地 catName-运营商 $url = 'http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=' . $mobile . '&t=' . time(); //淘宝API $content = file_get_contents($url); if(strlen($content) < 40) return $result; |
二、编辑/admin/order.php,添加函数调用(高亮部分)
代码如下 | 复制代码 |
/* 格式化金额 */ if ($order['order_amount'] < 0) { $order['money_refund'] = abs($order['order_amount']); $order['formated_money_refund'] = price_format(abs($order['order_amount'])); } /* 手机号码归属地 */ |
三,编辑/admin/tempaltes/order_info.htm,在订单收货人信息中添加手机号码归属地
代码如下 | 复制代码 |
<tr> <td><div align="right"><strong>{$lang.label_tel}</strong></div></td> <td>{$order.tel}</td> <td><div align="right"><strong>{$lang.label_mobile}</strong></div></td> <td>{$order.mobile|escape} <font color="#FF0000">{$order.mobile_area}</font></td> </tr> |
时间: 2024-09-23 11:53:05