摘要:
//公众号分享 public function index() { global $oid; $url = input('url'); $oid = input('oid'); $wxGzhAppid = PayConfig::get_wx_config_info('wxGzhAppid', $oid); $wxGzhS... 阅读全文
摘要:
1 先去微信公众平台,选择现有模板,会有一个模板编号,模板中没有的关键词,可以申请新增。 微信公众平台直达:https://mp.weixin.qq.com 模板消息对应文档直达:https://developers.weixin.qq.com/miniprogram/dev/framework/o 阅读全文
摘要:
一 . 小程序提现到零钱的官方文档,建议先看下,再看下面的代码 地址:https://pay.weixin.qq.com/wiki/doc/api/tools/mch_pay.php?chapter=14_1 付款规则: 调用接口所需参数,除下图中所需参数外,还需要小程序的支付key,证书。这两样在 阅读全文
摘要:
/** * 将xml转为array * @param string $xml xml字符串 * @return array 转换得到的数组 */ public function xml2array($xml) { //禁止引用外部xml实体 libxml_disable_entity_loader(false); $result = json_dec... 阅读全文
摘要:
$appid, //appid T 'mch_id' => $mchid, //商户号T 'nonce_str' => $nonce_str, 'body' => '可待商城系统-商品购买', //商品信息 'out_trad... 阅读全文