thinkphp5中无法正常调用第三方库的原因

浏览:1141 发布日期:2017/08/07 分类:ThinkPHP5专区
在thikphp5的开发中,经常会使用第三方库节省开发时间,但有时会遇到类无法找到的bug.比如
Class 'phpmailer\PHPMailer' not found
Class 'wxpay\NativePay' not found
Class 'PHPExcel' not found
Class 'Ren\Nanren' not found
Class 'Assetic\Asset\AssetCollection' not found
等等这样的bug.

出现这列情况的原因一般如下:
1 类文件不存在,(这个可能性第一点)
2 类文件名称与类名不一致。(要看仔细一点)
3 类文件没有使用正确的命名空间;
4 thinkphp对于第三方库使用,需要加根命名空间符号。比如: $mail = new \PHPMailer();
5 其他带补充

更多内容访问:http://b.izhangbo.cn/info/5988076a53c6d.html
最佳答案
评论( 相关
后面还有条评论,点击查看>>