class Album_Model extends Model_Core
kohana 2.3.4版本中加载Model出错
Fatal error: Call to undefined method Model::_construct() in C:\xampp\htdocs\kohana\application\models\album.php on line 8
在application/model/下的代码是:加载Model时被警告说该函数不存在。下面的parent::_construct();就运行错误了
<?php
defined('SYSPATH')OR die('No direct access allowed');
class Album_Model extends Model
{
private $album_table;
public function __construct()
{
parent::_construct();
//$this->album_table='albums';
}
}
class Album_Model extends Model_Core
是_construct这少了一个"_",要两个_
发表讨论