Why do even the simplest try/catch blocks crash my PHP?

  • Thread starter Thread starter Mokele Mbembe
  • Start date Start date
M

Mokele Mbembe

Guest
try{
echo "A";
}catch(Exception $x){
echo "B";
}
It's as if it gives up the moment it parses the file, but I can never find bad syntax, and I've even tried copying sample code. I can't have any try/catch that doesn't kill the page, AT ALL! WTF?!
 
Back
Top