为了账号安全,请及时绑定邮箱和手机立即绑定

微信支付和支付宝支付接口回调函数的判断

标签:
Java

  微信支付和支付宝支付接口是现在网络商城必不可少的功能,有些网站不只一处需要对接这样同一个接口,不同的功能,传的参数不一样,但是回调只有一个,针对这样的问题,我们在回调函数里就需要进行判断了,判断是那个功能模块传过来的参数,来进行处理后续问题。下面就来为大家分析解答一下。

  主要实现代码如下:
接口1:
public function wxpay(){
header("Content-type:text/html;charset=utf-8");
$order_sn=I("order_sn");
$fa_need=M('fa_need');
$list=$fa_need->where("order_sn=$order_sn")->find();
$type=$list['type'];
$price=$list['need_salary'];
ini_set('date.timezone','Asia/Shanghai');
$time = date('Y-m-d');
vendor("WxPayPubHelper.lib.WxPay#Api");
$uid=session("uid");
$user=M("user");
$userinfo=$user->where("uid=$uid")->find();

$openid=$userinfo['openid'];
$data=$type.';'.'1'.';'.$order_sn;
//②、统一下单
$input = new \WxPayUnifiedOrder();

// dump($input);die;
$input->SetBody('欧克帮');
$input->SetAttach($data);
$input->SetOut_trade_no($order_sn); //商户号加上年月日十分秒 订单号
$input->SetTotal_fee($price);
// $input->SetTotal_fee(1);
$input->SetTime_start(date("YmdHis"));
$input->SetTime_expire(date("YmdHis", time() + 600));
$input->SetGoods_tag($data);
$input->SetNotify_url("http://www.okxiaoyuan.com/Task/updateYanbao");
$input->SetTrade_type("JSAPI");
$input->SetOpenid($openid);

$order = \WxPayApi::unifiedOrder($input);

$jsApiParameters = $this->GetJsApiParameters($order);
// var_dump($jsApiParameters);exit;
$this->assign('price',$price);
$this->assign('order_sn',$order_sn);
$this->assign('openid',$openid);
$this->assign('jsApiParameters',$jsApiParameters);
$this->display();

}
接口2:
public function wxpay1(){
header("Content-type:text/html;charset=utf-8");
$uid=I("uid");
$user=M('user');
$list=$user->where("uid=$uid")->find();
$openid=$list['openid'];
$price=$list['pay_money'];
ini_set('date.timezone','Asia/Shanghai');
$time = date('Y-m-d');
vendor("WxPayPubHelper.lib.WxPay#Api");

$data=$type.';'.'2'.';'.$uid;
$order_sn=date("YmdHis",time()).rand(10000,99999);
//②、统一下单
$input = new \WxPayUnifiedOrder();

// dump($input);die;
$input->SetBody('欧克帮');
$input->SetAttach($data);
$input->SetOut_trade_no($order_sn); //商户号加上年月日十分秒 订单号
$input->SetTotal_fee($price*100);
//$input->SetTotal_fee(1);
$input->SetTime_start(date("YmdHis"));
$input->SetTime_expire(date("YmdHis", time() + 600));
$input->SetGoods_tag($data);
$input->SetNotify_url("http://www.okxiaoyuan.com/User/updateYanbao");
$input->SetTrade_type("JSAPI");
$input->SetOpenid($openid);

$order = \WxPayApi::unifiedOrder($input);

$jsApiParameters = $this->GetJsApiParameters($order);
// var_dump($jsApiParameters);exit;
$this->assign('price',$price);
$this->assign('order_sn',$order_sn);
$this->assign('openid',$openid);
$this->assign('jsApiParameters',$jsApiParameters);
$this->display();

}
回调:
public function updateYanbao(){
$fileContent = file_get_contents("php://input");
//转换为simplexml对象
$xmlResult = simplexml_load_string($fileContent);
//$arr = json_decode(json_encode($xmlResult),TRUE);
//echo $xmlResult["age"]."//".$xmlResult->age;
if ($xmlResult->result_code=="SUCCESS") {
echo 'SUCCESS';
foreach($xmlResult->children() as $childItem){    //遍历所有节点数据
//输出xml节点名称和值
//echo $childItem->getName() . "->".$childItem."<br />";
//$res =  $childItem->getName().":".$childItem.",".$res;
$datas = $childItem.",".$datas;
// $arr['"'.$childItem->getName().'"']=$childItem;
//其他操作省略
}
$varJson = $xmlResult->attach;
$varStr = explode(",", $varJson);
$str=$varStr[0];
$data=explode(';', $str);

    $type=$data[1];    if($type==1){    $order_sn = $data[2];    $model=M('fa_need');    $arr=$model->where("order_sn=$order_sn")->find();    $uid=$arr['uid'];  if($arr){  // $user=M("user");  // $userinfo=$user->where("uid=$uid")->find();  // if($arr['status']==1){  // $up['balance_money']=$userinfo['balance_money']+$arr['need_salary'];  // $user->where("uid=$uid")->save($up);  // }  $update1['needpay_state']=2;  $update1['status']=2;    if($model->where("order_sn=$order_sn")->save($update1)){    echo 'SUCCESS';    }  }    }    echo 'SUCCESS';}

}

  看完之后估计大部分的程序技术人员应该很清楚是怎么一回事了吧,如果还存在有不理解的地方,大家可以留言咨询。

 

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消