登录

PHP实现Jsapi支付与退款步骤详解

PHP笔记
0 928

前期准备:

1.当然了,还是要有一个微信认证服务号,并且开通了微信支付;

2.在微信商户后台配置好支付授权目录,同时准备好支付的Api证书(支付用不到,退款的时候使用)

3.调用接口支付的话,必须要先知道该用户的openid,所以要先知道怎么获取用户的openid,这个也很简单,我之前也有文章讲怎么获取用户的openid,详见文章微信公众号获取用户的openid。

好了,话不多说,直接贴上主要代码:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

/**

 * 微信支付请求接口(POST)

 * @param string $openid openid

 * @param string $body 商品简单描述

 * @param string $order_sn 订单编号

 * @param string $total_fee 金额

 * @return json的数据

 */

public function wxpay($openid$total_fee$body$order_sn){

 $config = $this->config;

 //统一下单参数构造

 $unifiedorder = array(

 'appid' => $config['appid']

 'mch_id' => $config['mch_id']

 'nonce_str' => self::getNonceStr()

 'body' => $body

 'out_trade_no' => $order_sn

 'total_fee' => $total_fee * 100

 'spbill_create_ip' => self::getip()

 'notify_url' => 'http://'.$_SERVER['HTTP_HOST'].'/notify.php'

 'trade_type' => 'JSAPI'

 'openid' => $openid

 );

 $unifiedorder['sign'] = self::makeSign($unifiedorder);

 //return $unifiedorder;

 //请求数据统一下单

 $xmldata = self::array2xml($unifiedorder);

 $url = 'https://api.mch.weixin.qq.com/pay/unifiedorder';

 $res = self::curl_post_ssl($url $xmldata);

 if(!$res){

 return array('status'=>0 'msg'=>"Can't connect the server" );

 }

 // 这句file_put_contents是用来查看服务器返回的结果 测试完可以删除了

 //file_put_contents('./log.txt'$resFILE_APPEND);

 $content = self::xml2array($res);

 if(strval($content['result_code']) == 'FAIL'){

 return array('status'=>0 'msg'=>strval($content['err_code']).':'.strval($content['err_code_des']));

 }

 if(strval($content['return_code']) == 'FAIL'){

 return array('status'=>0 'msg'=>strval($content['return_msg']));

 }

 $time = time();

 settype($time "string"); //jsapi支付界面时间戳必须为字符串格式

 $resdata = array(

 'appId' => strval($content['appid'])

 'nonceStr' => strval($content['nonce_str'])

 'package' => 'prepay_id='.strval($content['prepay_id'])

 'signType' => 'MD5'

 'timeStamp' => $time

 );

 $resdata['paySign'] = self::makeSign($resdata);

 return json_encode($resdata);

}

/**

 * 微信退款(POST)

 * @param string(28) $transaction_id 在微信支付的时候微信服务器生成的订单流水号在支付通知中有返回

 * @param string $out_refund_no 商品简单描述

 * @param string $total_fee 微信支付的时候支付的总金额(单位:分)

 * @param string $refund_fee 此次要退款金额(单位:分)

 * @return string  xml格式的数据

 */

public function refund($transaction_id$out_refund_no$total_fee$refund_fee){

 $config = $this->config;

 //退款参数

 $refundorder = array(

 'appid' => $config['appid']

 'mch_id' => $config['mch_id']

 'nonce_str' => self::getNonceStr()

 'transaction_id'=> $transaction_id

 'out_refund_no' => $out_refund_no

 'total_fee' => $total_fee * 100

 'refund_fee' => $refund_fee * 100

 );

 $refundorder['sign'] = self::makeSign($refundorder);

 //请求数据进行退款

 $xmldata = self::array2xml($refundorder);

 $url = 'https://api.mch.weixin.qq.com/secapi/pay/refund';

 $res = self::curl_post_ssl($url $xmldata);

 if(!$res){

 return array('status'=>0 'msg'=>"Can't connect the server" );

 }

 // 这句file_put_contents是用来查看服务器返回的结果 测试完可以删除了

 //file_put_contents('./log3.txt'$resFILE_APPEND);

 $content = self::xml2array($res);

 if(strval($content['result_code']) == 'FAIL'){

 return array('status'=>0 'msg'=>strval($content['err_code']).':'.strval($content['err_code_des']));

 }

 if(strval($content['return_code']) == 'FAIL'){

 return array('status'=>0 'msg'=>strval($content['return_msg']));

 }

 return $content;

}

这是封装好的类,使用起来也超级简单:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

require_once "wxpay.class.php";

$config = array(

 'wxappid' => 'wx123456789876'

 'mch_id' => '123456789'

 'pay_apikey' => '123456789876123456789876123456789876'

);

$wxpay = new WxPay($config);

$result = $wxpay->paytest();

?>

 ta http-equiv="content-type" content="text/html;charset=utf-8"/>

 ta name="viewport" content="width=device-width initial-scale=1"/>

 tle>江南极客支付tle>

 

 

 "#9ACD32">该笔订单支付金额为"color:#f00;font-size:50px">1分

 "#9ACD32">"color:#f00;font-size:50px;margin-left:40%;">1分钱也是爱

 

"center">

 

 

至于支付回调验证,这里就不过多讲了,不明白的可以看ThinkPHP中实现微信支付(jsapi支付)流程,这里详细讲了如何处理回调。

发表评论

0 个回复