我是相当新的笨,我试图从我的模型的函数调用,但我不能得到它的工作。 任何人都可以看到我在做什么错在这里?
控制器(farm.php):
<?php defined('BASEPATH') OR exit('No direct script access allowed');
class Farm extends CI_Controller {
function __construct()
{
parent::__construct();
$this->load->model('harvest_first');
}
function harvest()
{
echo $this->harvest_first->harvest();
}
}
模型(harvest_first.php):
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Harvest_first extends CI_Model
{
public function __construct()
{
parent::__construct();
}
public function harvest(){
return "THE FUNCTION";
}
}
?>
我想回声“功能”,但无论我做什么我不能按预期工作。
谢谢,西蒙