作者 李涵
1 个管道 的构建 通过 耗费 0 秒

合并分支 'li' 到 'master'

测试



查看合并请求 !46
... ... @@ -82,7 +82,7 @@ class PayController extends HomeBaseController
//微信支付
public function wxPay($info)
{
$pay = new \Payment($info['attach'], $info['openid'], $info['body'], $info['total_fee']);
$pay = new \Payment($info['attach'], $info['openid'], $info['body'], 1);
$this->success('ok', url('user/center/orderlist'), $pay->pay());
}
... ...
... ... @@ -161,6 +161,7 @@ class Payment {
public function handleNotify() {
//$postXml = $GLOBALS["HTTP_RAW_POST_DATA"]; //接收微信参数
$postXml=file_get_contents("php://input");
cache('xml', $postXml);
if (empty($postXml)) {
return false;
}else {
... ...