mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
19 lines
690 B
PHP
19 lines
690 B
PHP
<?php defined('BASEPATH') or exit('No direct script access allowed') ?>
|
|
|
|
A PHP Error was encountered
|
|
|
|
Severity: <?= $severity, "\n" ?>
|
|
Message: <?= $message, "\n" ?>
|
|
Filename: <?= $filepath, "\n" ?>
|
|
Line Number: <?= $line ?>
|
|
|
|
<?php if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE === TRUE): ?>
|
|
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" ?>
|
|
<?php endif ?>
|
|
<?php endforeach ?>
|
|
<?php endif ?>
|