PHP feature request: 'Throwable' interface
By Evert on 2009-06-18 23:59:53
I would love to have a 'Throwable' inteface in PHP, so I opened my very first feature request.
I realize this is mostly an OOP purist request, as it won't provide any real functionality.
If you agree, vote!
PHP try..catch syntax weirdness
By Evert on 2007-05-03 00:53:56
I just noticed today that the try..catch block requires the use of curly braces, e.g.:
<?php
try {
throw new Exception('unox');
} catch (Exception $e) echo $e->getMessage();
?>
..won't work. I wonder why..







