PayUtils.php 333 B

123456789101112131415161718
  1. <?php
  2. namespace common\pay\xunjie;
  3. class PayUtils
  4. {
  5. /**
  6. * @param array $data
  7. * @return string
  8. */
  9. public static function makeSign($data, $md5Key)
  10. {
  11. $str = '';
  12. foreach ($data as $key => $value) {
  13. $str .= "{$key}={$value}&";
  14. }
  15. return md5($str . $md5Key);
  16. }
  17. }