• 大小: 0.14M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-29
  • 标签: 支付宝  微信  php  支付  hp  

资源简介

利用PHP的反射把两种支付接口统一起来。

使用前需要配置目录下的Config文件即WxpayConfig.php与AlipayConfig.php

资源截图

代码片段和文件信息

/**
 * Created by IntelliJ IDEA.
 * User: wangchao
 * Date: 9/7/15
 * Time: 4:56 PM
 */

namespace WatcherHangzhouPayment\Payment;

class CommonUtil
{
    static function signParams($params $secret)
    {
        unset($params[‘sign_type‘]);
        unset($params[‘sign‘]);

        ksort($params);

        $sign = ‘‘;
        foreach ($params as $key => $value) {
            if (empty($value)) {
                continue;
            }
            $sign .= $key . ‘=‘ . $value . ‘&‘;
        }
        $sign = substr($sign 0 - 1);
        $sign .= $secret;

        return md5($sign);
    }

    static function postRequest($url $params)
    {
        $curl = curl_init();

        curl_setopt($curl CURLOPT_SSL_VERIFYPEER false);
        curl_setopt($curl CURLOPT_USERAGENT ‘Payment

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件         11  2015-09-07 21:32  weixin_alipay_php-master\.gitignore

    .......      2473  2015-09-07 21:32  weixin_alipay_php-master\Payment\Alipay\AlipayCloseTradeRequest.php

    .......       293  2015-09-07 21:32  weixin_alipay_php-master\Payment\Alipay\AlipayConfig.php

    .......      2569  2015-09-07 21:32  weixin_alipay_php-master\Payment\Alipay\AlipayRequest.php

    .......      3626  2015-09-07 21:32  weixin_alipay_php-master\Payment\Alipay\AlipayResponse.php

    .......    250283  2015-09-07 21:32  weixin_alipay_php-master\Payment\cacert.pem

    .......      1329  2015-09-07 21:32  weixin_alipay_php-master\Payment\CommonUtil.php

    .......      1455  2015-09-07 21:32  weixin_alipay_php-master\Payment\Payment.php

    .......       453  2015-09-07 21:32  weixin_alipay_php-master\Payment\Request.php

    .......      1168  2015-09-07 21:32  weixin_alipay_php-master\Payment\Response.php

    .......       300  2015-09-07 21:32  weixin_alipay_php-master\Payment\Wxpay\WxpayConfig.php

    .......      3622  2015-09-07 21:32  weixin_alipay_php-master\Payment\Wxpay\WxpayRequest.php

    .......      1565  2015-09-07 21:32  weixin_alipay_php-master\Payment\Wxpay\WxpayResponse.php

     文件       3391  2015-09-07 21:32  weixin_alipay_php-master\Readme.md

     目录          0  2015-09-07 21:32  weixin_alipay_php-master\Payment\Alipay

     目录          0  2015-09-07 21:32  weixin_alipay_php-master\Payment\Wxpay

     目录          0  2015-09-07 21:32  weixin_alipay_php-master\Payment

     目录          0  2016-07-14 18:14  weixin_alipay_php-master

----------- ---------  ---------- -----  ----

               272538                    18


评论

共有 条评论