开发者

How to suppress the "Division by zero" error and set the result to null for the whole application?

开发者 https://www.devze.com 2023-01-16 23:56 出处:网络
How to suppress the \"Division by zero\" error and set the result to null for the whole application? By saying \"开发者_JS百科for the whole application\", I mean it is not for a single expression. Ins

How to suppress the "Division by zero" error and set the result to null for the whole application? By saying "开发者_JS百科for the whole application", I mean it is not for a single expression. Instead, whenever a "Division by zero" error occurs, the result is set to null automatically and no error will be thrown.


This should do the trick.

$a = @(1/0); 
if(false === $a) {
  $a = null;
}
var_dump($a);

outputs

NULL

See the refs here error controls.

EDIT

function division($a, $b) {
    $c = @(a/b); 
    if($b === 0) {
      $c = null;
    }
    return $c;
}

In any place substitute 1/0 by the function call division(1,0).

EDIT - Without third variable

function division($a, $b) {         
    if($b === 0)
      return null;

    return $a/$b;
}


Simple as.. well abc*123-pi

$number = 23;
$div = 0;

//If it's not 0 then divide
if($div != 0)
  $result = $number/$div;//is set to number divided by x
}
//if it is zero than set it to null
else{
  $result = null;//is set to null
} 

As a function

function mydivide($divisior, $div){
   if($div != 0)
     $result = $divisor/$div;//is set to number divided by x
   }
   //if it is zero than set it to null
   else{
     $result = null;//is set to null
   }
   return $result;
}

Use it like this

$number = mydivide(20,5)//equals four

I can't think of a way to set it whenever there's division but I'd use the function and rename it to something like "d" so it's short!


This is a horrible solution, but thankfully, you won't use it because the variable is set to false instead of null.

function ignore_divide_by_zero($errno, $errstring)
{
  return ($errstring == 'Division by zero');
}

set_error_handler('ignore_divide_by_zero', E_WARNING);

In your case, I'd create a function that does your division for you.


What about using a ternary operator, like so:

$a = $c ? $b/$c : null;
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号