0
<?php
 // my user_model_new.php file in application/model folder
 class User_model_new extends CI_Model{
    private $random_property;
    function __construct()
    {
        parent::__construct();
    }
    protected get_random_property()
    {
        return $this->random_property;
    }
 }
 // my article_model.php file in application/model folder
 class Article_model extends User_model_new{
     function show_random()
     {
         $this->get_random_property();
     }  

 }

但现在如果我运行代码 codeIgniter 显示此错误“未找到类 User_model_new”。这里有什么问题?帮助我,因为它我被困住了。

4

1 回答 1

1

代替

 class Article_model extends User_model{

 class Article_model extends User_model_new{
于 2013-09-16T06:49:28.030 回答