微信 H5 支付demo 直接上代码
<?php
/**
*
* 微信H5支付demo
*
*/
header('Content-Type: text/html; charset=utf-8');
$b = new Wxpay();
$pay = $b->wxpaymoney();
echo $pay;
class Wxpay{
/**
* @return array
*/
public function wxpaymoney()
{
$money= 1;//充值金额
$userip = $this->getClientIp(); //获得用户设备IP 自己网上百度去
$appid = "开发者ID(AppID)";//微信给的
$mch_id = "微信支付商户号";//微信官方的
$key = "API密钥";//自己设置的微信商家key
$rand = rand(00000,99999);
$out_trade_no = '20170804'.$rand;//平台内部订单号
$nonce_str=MD5($out_trade_no);//随机字符串
$attach="支付测试";
$body = "H5";//内容
$total_fee = $money; //金额
$spbill_create_ip = $userip; //IP
$notify_url =