このプラグインで php によるゼロ除算の警告を取り除くにはどうすればよいですか?
警告: /home/fortduby/public_html/wp-content/plugins/cp_giveaway_n_bets/shortcodes/lottery1.php の 472 行目のゼロ除算
$cb_lottery_point_entries_left = round(($cp_point_entry_results / $cb_point_entry_limit) * 100);
このプラグインで php によるゼロ除算の警告を取り除くにはどうすればよいですか?
警告: /home/fortduby/public_html/wp-content/plugins/cp_giveaway_n_bets/shortcodes/lottery1.php の 472 行目のゼロ除算
$cb_lottery_point_entries_left = round(($cp_point_entry_results / $cb_point_entry_limit) * 100);
$cb_point_entry_limit
がゼロの場合は計算を実行しません。
あなたの場合、これら2つの意味のある方に変更してください
$cb_lottery_point_entries_left = 0;
if ($cb_point_entry_limit != 0) {
$cb_lottery_point_entries_left = round(($cp_point_entry_results / $cb_point_entry_limit) * 100);
}
または
if ($cb_point_entry_limit != 0) {
$cb_lottery_point_entries_left = round(($cp_point_entry_results / $cb_point_entry_limit) * 100);
} else {
$cb_lottery_point_entries_left = $cp_point_entry_results;
}
($cb_point_entry_limit > 0) ? round(($cp_point_entry_results / $cb_point_entry_limit) * 100) : 0