PHP Classes

File: application/views/errors/html/error_php.php

Recommend this page to a friend!
  Classes of Kishor Mali   CodeIgniter Admin Panel with User Management   application/views/errors/html/error_php.php   Download  
File: application/views/errors/html/error_php.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: CodeIgniter Admin Panel with User Management
CodeIgniter panel to manage application users
Author: By
Last change:
Date: 3 years ago
Size: 835 bytes
 

Contents

Class file image Download
<?php
defined
('BASEPATH') OR exit('No direct script access allowed');
?>

<div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">

<h4>A PHP Error was encountered</h4>

<p>Severity: <?php echo $severity; ?></p>
<p>Message: <?php echo $message; ?></p>
<p>Filename: <?php echo $filepath; ?></p>
<p>Line Number: <?php echo $line; ?></p>

<?php if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE === TRUE): ?>

    <p>Backtrace:</p>
    <?php foreach (debug_backtrace() as $error): ?>

        <?php if (isset($error['file']) && strpos($error['file'], realpath(BASEPATH)) !== 0): ?>

            <p style="margin-left:10px">
            File: <?php echo $error['file'] ?><br />
            Line: <?php echo $error['line'] ?><br />
            Function: <?php echo $error['function'] ?>
</p>

        <?php endif ?>

    <?php endforeach ?>

<?php endif ?>

</div>