截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Expressage.php 962B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. namespace Expressage;
  3. class Expressage
  4. {
  5. protected $app;
  6. protected $key;
  7. protected $debug;
  8. protected $logistics_info;
  9. public function __construct($app, $key, $debug = false)
  10. {
  11. $this->app = $app;
  12. $this->key = $key;
  13. $this->debug = $debug;
  14. }
  15. /**
  16. * 格式化
  17. * @return bool
  18. */
  19. public function logisticsFormat()
  20. {
  21. if (empty($this->logistics_info)) {
  22. return false;
  23. }
  24. $info = $this->logistics_info;
  25. foreach ($info as $k => $v) {
  26. $info[$k] = array_values($v);
  27. }
  28. return $info;
  29. }
  30. /**
  31. * 电商Sign签名生成
  32. * @param data 内容
  33. * @param appkey Appkey
  34. * @return DataSign签名
  35. */
  36. protected function encrypt($data, $appkey)
  37. {
  38. return urlencode(base64_encode(md5($data . $appkey)));
  39. }
  40. public function getError()
  41. {
  42. return $this->error;
  43. }
  44. }