I know the following is valid in C++, Java, and Perl, however I have not been able to find out whether or not it is in PHP.
try(test)
{
...code here...
}
catch(test e)
{
...code here...
}
If this is valid where can I find the documentation on it. I have not been able to find it within the PHP manual.