This should so work. Please tell me I'm doing something wrong.

Here's the code:

<?php
try {
  echo "start";
  throw new Exception("test");
  for ($index=0; $index < 1; $index++) {
    echo "loop";
  }
} catch ( Exception $e ){
  echo "caught $e";
}
?>

I'm getting an uncaught exception, if I move the throw inside the loop it works fine, but that defeats my purpose. I could hack in separate try/catch blocks, but thats hackish.

I've tried it on a 5.2.13 and 5.2.17 server. Current production is at 5.2.17, and no I haven't tested it on 5.3.8 because I'd have to get with my host to upgrade, and retest a lot of code.

Any love?

P.S. I do know the difference between an exception and an uncaught exception. But here's the result:

start
Fatal error: Uncaught exception 'Exception' with message 'test' in C:\UniServer\www\admin\water_ws\test.php:4 Stack trace: #0 {main} thrown in C:\UniServer\www\admin\water_ws\test.php on line 4
link|improve this question
6  
Seems to catch fine on viper7 (5.2.15RC3-dev) and codepad (5.2.5)… are you sure something else isn't at play here? The fact that you echo $e (conversion of Exception to string) which shows similar output to the uncaught case may not help. – cbuckley Jan 10 at 1:39
Can you elaborate on how it is not working? Is it printing "loop" and not "caught test"? – atxdba Jan 10 at 1:54
OP suggests neither (uncaught exception); but I reckon caught $e looks a lot like Fatal error: Uncaught $e. – cbuckley Jan 10 at 1:57
1  
Any chance you have eAccelerator enabled? It and other opcode caches frequently have well documented issues with exceptions. – landons Jan 10 at 2:29
cbuckley - no I'm not sure something else isn't at play, this is one of those wtf errors that just don't smell right. But the conversion of Exception to a string is a red herring. – rcarver Jan 10 at 3:51
show 1 more comment
feedback

2 Answers

up vote 0 down vote accepted

As landons suggested, it was eAccelerator's "optimizing" that optimized my catch block away. Once I disabled eAccelerator it works as expected.

link|improve this answer
feedback

why do you echo $e object? try this:

try {
    throw new Exception("test");
    for ($index=0; $index < 1; $index++) {
        echo "loop";
    }
} catch ( Exception $e ){
    echo $e->getMessage();
}
link|improve this answer
echo $e; will invoke the Exception class's __toString() method which will return a nice summary of the thrown exception. – Philippe Gerber Jan 11 at 0:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.