作者:火俊逸香嘉孝 | 来源:互联网 | 2023-08-04 19:31
ThinkPHP 3.2.3
在Application\Common\Common\function.php中怎么实例化一个ThinkPHP\Library\Vendor\YPP\Page.class.php中的Page类?
我尝试了:
1
| $p = new Vendor\YPP\Page($count, $pagsize=10); |
结果提示:
Class 'Vendor\YPP\Page' not found
按照网上的说法,‘在Controller或function中使用第三方扩展时,就可以直接使用vendor()方法来进行引用了。’
那为什么还会报错呢?