TomatoPay.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. namespace Library;
  3. class TomatoPay {
  4. private $mchid;
  5. private $account;
  6. private $key;
  7. public function __construct($mchid, $account, $key) {
  8. $this->mchid = $mchid;
  9. $this->account = $account;
  10. $this->key = $key;
  11. }
  12. public function alipay ($cny, $type, $trade) {
  13. $params = [
  14. 'mchid' => $this->mchid,
  15. 'account' => $this->account,
  16. 'cny' => $cny,
  17. 'type' => $type,
  18. 'trade' => $trade
  19. ];
  20. $params['signs'] = $this->sign(http_build_query($params));
  21. return $this->buildHtml('https://b.fanqieui.com/gateways/alipay.php', $params);
  22. }
  23. public function sign ($str) {
  24. return md5($str.$this->key);
  25. }
  26. public function buildHtml($url, $params, $method = 'post', $target = '_self'){
  27. // var_dump($params);exit;
  28. $html = "<form id='submit' name='submit' action='".$url."' method='$method' target='$target'>";
  29. foreach ($params as $key => $value) {
  30. $html .= "<input type='hidden' name='$key' value='$value'/>";
  31. }
  32. $html .= "</form><script>document.forms['submit'].submit();</script>";
  33. return $html;
  34. }
  35. }