Thursday, April 4, 2019

php - Division by zero error in votes

This should work for you:


(It's testing if $total_voting is zero and returns in this case false)


function percent($liked, $total_voting) {
if($total_voting == 0)
return false;
$liked = (int)$liked;
$total_voting = (int)$total_voting;
return ceil(($liked/$total_voting)*100);
}

No comments:

Post a Comment

plot explanation - Why did Peaches' mom hang on the tree? - Movies & TV

In the middle of the movie Ice Age: Continental Drift Peaches' mom asked Peaches to go to sleep. Then, she hung on the tree. This parti...