Skip to content

Instantly share code, notes, and snippets.

@payks
payks / Payks.class.php
Created April 3, 2019 13:41
payks微信支付php类
<?php
class Payks
{
private $mch_id = '';
private $mch_key = '';
public function __construct($mch_id, $mch_key) {
$this->mch_id = $mch_id;
$this->mch_key = $mch_key;