PHP Classes

File: example/bug_catcher.php

Recommend this page to a friend!
  Classes of Francisco Núñez   PHP Development Tools   example/bug_catcher.php   Download  
File: example/bug_catcher.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Development Tools
Components to help PHP application development
Author: By
Last change:
Date: 1 year ago
Size: 1,930 bytes
 

Contents

Class file image Download
<?php

/**
 * PHP Development Tools.
 * PHP Version required 7.4.* or higher
 *
 * @see https://github.com/arcanisgk/PHP-Development-Tools
 *
 * @author Walter Nuñez (arcanisgk/original founder)
 * @email icarosnet@gmail.com
 * @copyright 2020 - 2022 Walter Nuñez/Icaros Net S.A.
 * @license For the full copyright and licence information, please view the LICENSE
 * @note This program is distributed in the hope that it will be useful
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.
 */

?>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>PDT - PHP Development Tool</title>
</head>
<body>
<div style="margin: 25px">
    <hr>
    <div style="color:orangered;font-weight: bold; float: left; margin-right: 10px">ShutdownHandler:</div>
    <a href="test/example_shutdown_handler.php" target="_blank">Documentation and Example</a><br>
    <span>
        <b>Note:</b>
        This script detects the execution environment; web or CLI.
    </span><br>
    <hr>
    <div style="color:orangered;font-weight: bold; float: left; margin-right: 10px">ExceptionHandler:</div>
    <a href="test/example_exception_handler.php" target="_blank">Documentation and Example</a><br>
    <span>
        <b>Note:</b>
        This data output contains a series of examples of Alert, Warning and System Error controls that are shown on the screen in a friendly way.
    </span><br>
    <hr>
    <div style="color:orangered;font-weight: bold; float: left; margin-right: 10px">ErrorHandler:</div>
    <a href="test/example_error_handler.php" target="_blank">Documentation and Example</a><br>
    <span>
        <b>Note:</b>
        This data output contains a series of examples of Alert, Warning and System Error controls that are shown on the screen in a friendly way.
    </span><br>
    <hr>
</div>
</body>
</html>