此篇博客继承https://blog.csdn.net/fangkang7/article/details/83069893查看
1.创建一个工具类util,将接入微信公众号的代码写在这里边,这个方法不仅仅可以给这个项目使用也可以给其他项目使用
2.控制器代码
/* author:咔咔 wechat:fangkangfk */ <?php namespace app\index\controller; use think\Controller; use Request; use Log; use app\util\WeixinUtil; class Weixin extends Controller { /** * 显示资源列表 * * @return \think\Response */ public function index() { $WeixinUtil = new WeixinUtil(); return $WeixinUtil->check(); } }
注意需要引入的文件weixin.php