Apache/2.2.4 (Win32) DAV/2 mod_ssl/2.2.4 OpenSSL/0.9.8e mod_autoindex_color PHP/5.2.3 ,eAccelerator v0.9.5.1,
extension=eAccelerator.dll
eaccelerator.enable = 1
eaccelerator.cache_dir = c:\somenotexistingdir
eaccelerator.check_mtime = 1
eaccelerator.compress = 1
eaccelerator.compress_level = 4
eaccelerator.content = shm_only
eaccelerator.debug = 0
eaccelerator.keys = shm_only
eaccelerator.optimizer = 1
eaccelerator.sessions = shm_only
eaccelerator.shm_max = 0
eaccelerator.shm_only = 1
eaccelerator.shm_prune_period = 0
eaccelerator.shm_size = 16
;eaccelerator.shm_ttl = 0
;eaccelerator.filter =
;eaccelerator.log_file =
;eaccelerator.name_space =
<?phpcode
try
{
throw new NoFileException('testblah');
}
catch(TraceException $hl)
{
}
catch(NoFileException $hl)
{
}
catch(Exception $hl)
{
}
>>
<?phpcode exception
class NoFileException extends Exception
{
public function __construct($message, $code = 0)
{
parent::__construct($msg, $code);
}
}
?>
set_exception_handler('personal_exception_handler');