php – Codeigniter 2 index和__construct之间的区别以及__construct中的内容

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了php – Codeigniter 2 index和__construct之间的区别以及__construct中的内容脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
什么时候__construct被调用,何时被调用索引?还有其他差异吗?

什么放在__construct?什么是最佳实践,我应该把$this->加载调用…?还有什么?

class SITe extends CI_Controller {

      public function __construct() {

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

     }

     public function index() {

          echo 'Hello World1';

     }
}

解决方法

首先调用 __construct(),然后根据URL调用 index()或其他函数.

public function __construct()应该包含:

>分配整个类ex中使用的资. $这 – >负载
>检查用户身份验证(如果整个类需要它)

public function index()应该包含:

>分配仅在此功能中使用的资源
>调用视图或显示任何内容

如果公共函数__construct()包含:

>显示任何东西>任何只需要一个功能代码.

脚本宝典总结

以上是脚本宝典为你收集整理的php – Codeigniter 2 index和__construct之间的区别以及__construct中的内容全部内容,希望文章能够帮你解决php – Codeigniter 2 index和__construct之间的区别以及__construct中的内容所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。