码迷,mamicode.com
首页 > 微信 > 详细

微信环境的PHP版本升级7.0以上的一些坑

时间:2018-04-07 01:11:54      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:fun   推送   方法   blog   版本升级   获取   通知   回文   highlight   

坑一:
微信支付Api.class.php 或 微信API :WxPay.Api.php 的 notify() 方法 支付结果通用通知 //获取通知的数据 // $xml = $GLOBALS[‘HTTP_RAW_POST_DATA‘]; $xml = file_get_contents("php://input"); // 开启openssl.dll扩展 升级完PHP7 发现微信支付回调失败。
坑二:
返回回事件消息失败和返回文本消息失败问题public function __construct 微信示例代码wxBizMsgCrypt.php里面的构造函数是用的类名,但php7不再支持类名作为构造函数,需要使用__construct,修改构造函数为__construct。 public function Prpcrypt修改为public function __construct public function WXBizMsgCrypt 修改为public function __construct

  

坑三:
// 获取微信推送过来的post数据(xml格式) // $postArr = $GLOBALS[‘HTTP_RAW_POST_DATA‘]; //接受post数据,PHP7废弃的全局变量 $postArr = file_get_contents("php://input");

  目前遇到过的 

 

微信环境的PHP版本升级7.0以上的一些坑

标签:fun   推送   方法   blog   版本升级   获取   通知   回文   highlight   

原文地址:https://www.cnblogs.com/zelzzz/p/8729287.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!