除以零拉维PHP7

除以零拉维PHP7,php,laravel,Php,Laravel,我有一个百分比计算。但如果没有可用数据,我会收到以下错误消息: 除零 计算: $count_progress = ($get_progress / $gc->jumlah_cek) * 100; 我认为最好检查$gc->jumlah\u cek参数: if ($gc->jumlah_cek != 0) $count_progress = ($get_progress / $gc->jumlah_cek) * 100; else $count_progress

我有一个百分比计算。但如果没有可用数据,我会收到以下错误消息:

除零

计算:

$count_progress = ($get_progress / $gc->jumlah_cek) * 100;

我认为最好检查$gc->jumlah\u cek参数:

if ($gc->jumlah_cek != 0)
    $count_progress = ($get_progress / $gc->jumlah_cek) * 100;
else
    $count_progress = 0;

您应该向问题添加完整的源代码