gpt4 book ai didi

php - CodeIgniter 没有加载扩展的 MY_Exceptions

转载 作者:可可西里 更新时间:2023-11-01 09:28:08 27 4
gpt4 key购买 nike

我正在尝试覆盖 CI_Exceptions 中的 show_404 方法,但从未加载 MY_Exceptions

MY_Exceptions 位于application/core/

代码

<?php
class MY_Exceptions extends CI_Exceptions {
function show_404(){
header("HTTP/1.1 404 Not Found");
$CI =& get_instance();
$CI->load->view('header.php');
$CI->load->view('err/custom404.php');
$CI->load->view('footer.php');
}
}

当我调用 show_404() 时出现两个 fatal error

Fatal error: Class 'MY_Exceptions' not found in C:\workspace\ictp-tv-main\system\core\Common.php on line 196

Fatal error: Class 'MY_Exceptions' not found in C:\workspace\ictp-tv-main\system\core\Common.php on line 196

我还有其他工作良好的扩展类,具有相同的前缀 MY_

EDIT After @Tpojka suggestion my code is

class MY_Exceptions extends CI_Exceptions {

public function __construct()
{
parent::__construct();
$this->CI =& get_instance();
}

public function show_404($page = '', $log_error = TRUE){

header("HTTP/1.1 404 Not Found");

$this->CI->load->view('header.php');
$this->CI->load->view('err/custom404.php');
$this->CI->load->view('footer.php');

}
}

现在 404 页面是空白的。

编辑

解决方案

我们需要 ECHO 错误,而不是简单的加载 View 。

public function show_404($page = '', $log_error = TRUE){
header("HTTP/1.1 404 Not Found");
echo $this->CI->load->view('header.php',array('PAGE_TITLE'=>'Page not found'),true);
echo $this->CI->load->view('err/custom404.php',null,true);
echo $this->CI->load->view('footer.php',null,true);
exit(4);
}

感谢@Tpojka 打开了我的思路。

最佳答案

试试这个

<?
class MY_Exceptions extends CI_Exceptions
{
public function __construct()
{
parent::__construct();
}

public function show_404($page = '', $log_error = TRUE)
{
if (is_cli())
{
$heading = 'Not Found';
$message = 'The controller/method pair you requested was not found.';
}
else
{
$heading = '404 Page Not Found This Time';
$message = 'The page you requested was not found.';
}
// By default we log this, but allow a dev to skip it
if ($log_error)
{
log_message('error', $heading.': '.$page);
}
echo $this->show_error($heading, $message, 'custom404', 404);//custom404 is in APPPATH.'views/errors/html/custom404.php'
exit(4); // EXIT_UNKNOWN_FILE
}
}

我编辑了上面的代码。我进行了研究并以此结束。我刚刚从 CI_Exceptions 类中复制了 show_404() 方法,看看可以进行哪些更改。您可以设置消息、标题并调用模板。你可以这样玩。另外,我建议您将 $this->load->view('header')$this->load->view('footer') 放在 custom404.php 文件本身。在文件 custom404.php 文件中只回显 $heading$message

关于php - CodeIgniter 没有加载扩展的 MY_Exceptions,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38833409/

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