关于在 Codeigniter 中安装 Smarty,我只需要一点帮助。
我所做的是:
- 提取 smarty,重命名为 smarty 并放入第三方文件夹
- 在 autoload.php 中启用 smarty
- 在视图中创建模板文件夹 (templates,templates_c)
- 运行示例页面(在我的情况下,我运行欢迎消息的默认索引)
结果是: 无法加载请求的类:smarty
在我的 autoload.php 中,我添加了 smarty:
$autoload['packages'] = array(APPPATH.'third_party','smarty');
/*
| -------------------------------------------------------------------
| Auto-load Libraries
| -------------------------------------------------------------------
| These are the classes located in the system/libraries folder
| or in your application/libraries folder.
|
| Prototype:
|
| $autoload['libraries'] = array('database', 'session', 'xmlrpc');
*/
$autoload['libraries'] = array('smarty');
我只是不知道我的错误在哪里。我希望你能帮助我。我是smarty的初学者。