在CodeIgniter中创建自定义控制器时使用默认的公共函数index()

时间:2018-09-04 06:43:42

标签: php codeigniter-3

我是CodeIgniter框架的新手,只是在研究框架时想问这个问题。我只想问一下,在添加其他功能之前是否要包含功能public function index(){....}?还是您不必添加功能并仅加载视图?例如,如果我不创建public function index(){...}而是仅添加一个函数,则假设public function test_index(){..}并在其中加载视图。

2 个答案:

答案 0 :(得分:0)

我现在明白了这一点。我可以添加public function index(){..}之外的其他函数,然后仅在其中调用或加载视图。例如:

public function test_index(){
$this->load->view('home_view);
}

,只需在浏览器中查看类和函数即可。

答案 1 :(得分:0)

您可以根据需要添加带有或不带有索引的其他功能