用户
 找回密码
 入住 CI 中国社区
搜索
查看: 2135|回复: 3
收起左侧

[已解决] 载入模块 出错 貌似没有载入

[复制链接]
发表于 2011-7-7 20:56:17 | 显示全部楼层 |阅读模式
model文件夹里  user_mdl.php 里面写了
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');


class User_mdl extends Ci_Model {

        public function get_user_by_id($uid)

        {

                echo '21222';

        }


}

controllers 下的user。php文件
<?php

class User extends CI_Controller {

       

        function __construct()
        {

                parent::__construct();

                $this->lang->load('common');

        }

       

        public function index()

        {
                echo '1111';
                $this->load->model('user_mdl');

                $new_data = $this->user_mdl->get_user_by_id('1');
                echo 'jkjlh';

        }       

}

只输出了   1111  其他什么都没有 哪里错了啊??
 楼主| 发表于 2011-7-7 20:59:35 | 显示全部楼层
顶上去  
发表于 2011-7-7 21:44:48 | 显示全部楼层
你的Ci_model写成CI_model试试
 楼主| 发表于 2011-7-8 21:11:35 | 显示全部楼层
binbin 发表于 2011-7-7 21:44
你的Ci_model写成CI_model试试

好了 谢谢啊

本版积分规则