| 1234567891011121314151617181920 |
- <?php
- namespace common\components\delivery\services\adapter;
- Class Functions {
- public static function getMobile($order){
- if(isset($order['customMobile']) && $order['customMobile'] != '') {
- return $order['customMobile'];
- }
- if(isset($order['receiveMobile']) && $order['receiveMobile'] != '') {
- return $order['receiveMobile'];
- }
- if(isset($order['bookMobile']) && $order['bookMobile'] != '') {
- return $order['bookMobile'];
- }
- throw new \Exception('收件人手机号不存在');
- }
- }
|