我在 application\config\hooks.php 中有这段代码
$hook['post_controller_constructor'] = array(
'class' => 'maintenance',
'function' => 'maintenance',
'filename' => 'maintenance.php',
'filepath' => 'hooks',
'params' => array()
);
这个代码在 application\hooks\maintenance.php
class maintenance
{
var $CI;
public function maintenance()
{
echo "Test";
}
}
这个代码在 application\config\config_maintenance.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
$config['maintenance'] = true;
这是我的控制器的样子:
<?php
class Home extends CI_Controller {
function __construct()
{
parent::__construct();
$this->load->model(array('home_model'));
}
function index()
{
$this->load->view('home');
}
}
运行代码时,如果我不添加“exit;”,则会在页面上回显“Test”两次 在 echo 声明之后。这是否意味着“post_controller_constructor”被调用了两次?
我想知道为什么会这样,因为根据 CI 文档
post_controller_constructor: 在你的控制器实例化后立即调用,但在任何方法调用发生之前。