PHP Classes

File: prepend.php

Recommend this page to a friend!
  Classes of Cezary Tomczak   Error Handler   ???   Download  
File: ???
Role: Example script
Content type: text/plain
Description: Prepend the script
Class: Error Handler
Output PHP execution errors information
Author: By
Last change:
Date: 21 years ago
Size: 159 bytes
 

Contents

Class file image Download
<?php

include_once dirname(__FILE__) . '/Handler.php';
$__ErrorHandler = new ErrorHandler;
set_error_handler(array(&$__ErrorHandler, 'raiseError'));

?>