微信加载类问题 有大神可以给个解答吗!

浏览:508 发布日期:2017/08/16 分类:ThinkPHP5专区 关键字: 微信加载类 wechat.class.php wechat 微信类 extend 命名空间 微信问题
报错信息
Class 'org\Wechat' not found
<?php
namespace app\admin\Controller;
use org\Wechat;
use think\Loader;
class Index
{
public function index()
{
$options = array('token'=>'tokenaccesskey');
$weObj = new Wechat($options);
$weObj->valid();
}

}
类目录放在了控制器下面的extend\org\wechat.class.php 文件也写了namespace org;
为什么还是报错啊;
主要是这段报错 $weObj = new Wechat($options);

在线等

最佳答案
评论( 相关
后面还有条评论,点击查看>>