gpt4 book ai didi

php - Codeigniter 2 index 和 __construct 之间的区别以及在 __construct 中放置的内容

转载 作者:可可西里 更新时间:2023-11-01 00:14:48 24 4
gpt4 key购买 nike

什么时候调用__construct,什么时候调用index?还有其他区别吗?

__construct 中要放什么?最好的做法是什么,我应该调用 $this->load 电话......?还有什么?

class Site extends CI_Controller {

public function __construct() {

parent::__construct();
echo 'Hello World2';

}

public function index() {

echo 'Hello World1';

}
}

最佳答案

__construct() 先被调用,然后根据 URL 调用 index() 或其他功能。

公共(public)函数 __construct() 应包含:

  1. 分配整个类(class)使用的资源 ex。 $this->加载
  2. 检查用户身份验证(如果整个类(class)都需要)

public function index() 应该包含:

  1. 分配仅用于此功能的资源
  2. 调用 View 或显示任何内容

如果 public function __construct() 包含以下内容,则这是糟糕的设计:

  1. 展示任何东西
  2. 任何代码只需要一个功能。

关于php - Codeigniter 2 index 和 __construct 之间的区别以及在 __construct 中放置的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16691036/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com