[EMAIL PROTECTED]:~/devel/php/tests > cat tick.php
<?php
class ErrorHandler {
function __construct() {
set_error_handler(array(&$this, 'handle'));
}
function __destruct() {
restore_error_handler();
}
function handle($code, $msg, $file, $line, $locals) {
}
}
new ErrorHandler();
?>
[EMAIL PROTECTED]:~/devel/php/tests > php-dev tick.php
Bus error (core dumped)
- Timm
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
