資源簡介
利用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
評論
共有 條評論