How to catch a division by zero?

Posted by Cristian Castiblanco on Stack Overflow See other posts from Stack Overflow or by Cristian Castiblanco
Published on 2010-06-18T15:41:01Z Indexed on 2010/06/18 15:43 UTC
Read the original article Hit count: 411

Filed under:
|
|

I have a large mathematical expression that has to be created dinamically. So, for example, once I have parsed "something" the result will be a string like: "$foo+$bar/$baz";.

So, for calculating the result of that expression I'm using the eval function... something like this:

eval("\$result = $expresion;");
echo "The result is: $result";

The problem here is that sometimes I get errors that says there was a division by zero, and I don't know how to catch that Exception. I have tried things like:

eval("try{\$result = $expresion;}catch(Exception \$e){\$result = 0;}");
echo "The result is: $result";

Or:

try{
    eval("\$result = $expresion;");
}
catch(Exception $e){
    $result = 0;
}
echo "The result is: $result";

But it does not work. So, how can I avoid that my application crashes when there is a division by zero?

© Stack Overflow or respective owner

Related posts about php

Related posts about exception