用户
 找回密码
 入住 CI 中国社区
搜索
12
返回列表 发新帖
楼主: 小白TO大白
收起左侧

[HELP] CI中load一个library的问题

[复制链接]
 楼主| 发表于 2012-3-26 10:38:39 | 显示全部楼层
sdink 发表于 2012-3-26 10:26
$this->load->library('My_Smarty ');
print_r($this->My_Smarty )

输出报错:
Undefined property: Index:My_Smarty
发表于 2012-3-26 10:51:36 | 显示全部楼层
靠,从没见过,贴controllers
发表于 2012-3-26 11:22:54 | 显示全部楼层
使用smarty模板引擎?
 楼主| 发表于 2012-3-26 11:48:31 | 显示全部楼层
本帖最后由 小白TO大白 于 2012-3-26 11:49 编辑
sdink 发表于 2012-3-26 10:51
靠,从没见过,贴controllers

class Index extends CI_Controller {

        private $page = 1;                                        //当前显示的页数,默认为1

        function __construct()
        {
                parent::__construct();
        }

        //显示问题列表
        public function index()
        {
                $this->load->library('My_Smarty');
                $this->My_Smarty->viewWithDefaultTemplate('home/index.tpl');
        }}

 楼主| 发表于 2012-3-26 11:49:53 | 显示全部楼层
80后 发表于 2012-3-26 11:22
使用smarty模板引擎?

是的是的是的
发表于 2012-3-26 13:18:17 | 显示全部楼层
 楼主| 发表于 2012-3-26 14:56:47 | 显示全部楼层
sdink 发表于 2012-3-26 13:18
http://codeigniter.org.cn/user_guide/general/creating_libraries.html

谢谢了,原来是没有小写!!!

本版积分规则