2023-11-29 12:24:09 +03:00
|
|
|
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?>
|
2016-04-24 19:14:32 +03:00
|
|
|
|
|
|
|
A PHP Error was encountered
|
|
|
|
|
2017-09-14 16:18:20 +03:00
|
|
|
Severity: <?= $severity, "\n" ?>
|
|
|
|
Message: <?= $message, "\n" ?>
|
|
|
|
Filename: <?= $filepath, "\n" ?>
|
|
|
|
Line Number: <?= $line ?>
|
2016-04-24 19:14:32 +03:00
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
<?php if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE === true): ?>
|
2017-09-14 16:18:20 +03:00
|
|
|
Backtrace:
|
|
|
|
<?php foreach (debug_backtrace() as $error): ?>
|
|
|
|
<?php if (isset($error['file']) && strpos($error['file'], realpath(BASEPATH)) !== 0): ?>
|
|
|
|
File: <?= $error['file'], "\n" ?>
|
|
|
|
Line: <?= $error['line'], "\n" ?>
|
|
|
|
Function: <?= $error['function'], "\n\n" ?>
|
2023-11-29 12:24:09 +03:00
|
|
|
<?php endif; ?>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
<?php endif; ?>
|