PhoneNumber.php 815 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com
  8. * =========================================================
  9. */
  10. namespace addon\weapp\event;
  11. use addon\weapp\model\Weapp;
  12. /**
  13. * 开放数据解密
  14. */
  15. class PhoneNumber
  16. {
  17. /**
  18. * 执行安装
  19. */
  20. public function handle($param = [])
  21. {
  22. if ($param['app_type'] == 'weapp') {
  23. $res = (new Weapp($param['site_id']))->decryptData($param);
  24. if ($res['code'] != 0) return $res;
  25. return success(0, '', $res['data']['purePhoneNumber']);
  26. }
  27. }
  28. }