TomatoPay.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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 pay ($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. }
  22. public function sign ($str) {
  23. return md5($str.$this->key);
  24. }
  25. public function buildHtml($params, $method = 'post', $target = '_self'){
  26. // var_dump($params);exit;
  27. $html = "<form id='submit' name='submit' action='https://b.fanqieui.com/gateways/submit.php' method='$method' target='$target'>";
  28. foreach ($params as $key => $value) {
  29. $html .= "<input type='hidden' name='$key' value='$value'/>";
  30. }
  31. $html .= "</form><script>document.forms['submit'].submit();</script>";
  32. return $html;
  33. }
  34. }