2017 © Pedro Peláez
 

project wxpay

微信支付 扫码支付 jspai支付

image

yonghua4413/wxpay

微信支付 扫码支付 jspai支付

  • Tuesday, December 5, 2017
  • by yonghua4413
  • Repository
  • 1 Watchers
  • 6 Stars
  • 22 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 4 Versions
  • 16 % Grown

The README.md

wxpay

微信支付 扫码支付 jspai支付, (*1)

$ composer require yonghua4413/wxpay
//加载
use YYHwxpay\Wxpay;

//准备订单信息
$order_id = data('YmdHis').mt_rand(1000,9999);
$openid = ''; //自行获取用户openid
$ip = ''; //自行获取ip
$pay_param = array(
    'body' => '一分钱测试商品',
    'out_trade_no' => $order_id,
    'spbill_create_ip' => $ip,
    'total_fee' => 1,
    'notify_url' => '' //异步通知地址
);

//将订单提交到数据库(代码略);

//自行申请
$config => array(
    'app_id'   => '',
    'app_secret'    => '',
    'app_mchid'=>'',
    'key' => ''
);

//调用统一下单
$weixin = new Wxpay($config);
$response = $weixin -> create_order($pay_param);

//发生错误
if($response['error'] == 1){
    var_dump($response['msg']);exit;
}

//扫码自付 获取支付二维码地址,自行调用相关类库生成二维码
$code_url = $response['data']['code_url'];
//扫码支付结束

//jspai支付 需要在config指定类型 'type' => "JSAPI"
$sign = $weixin -> get_jsbridge_param($response['data']['prepay_id']);

//页面端(jsapi支付)





#请选择最新的版本

The Versions

05/12 2017

dev-master

9999999-dev

微信支付 扫码支付 jspai支付

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

微信支付 扫码支付 wechat pay jspai支付

05/12 2017

v0.0.2

0.0.2.0

微信支付 扫码支付 jspai支付

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

微信支付 扫码支付 wechat pay jspai支付

05/12 2017

v0.0.3

0.0.3.0

微信支付 扫码支付 jspai支付

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

微信支付 扫码支付 wechat pay jspai支付

05/12 2017

v0.0.1

0.0.1.0

微信支付 扫码支付 jspai支付

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

微信支付 扫码支付 wechat pay jspai支付