triggerValue; $result = bccomp($amount, $compare, 4); if ($result === 1) { // found something Log::debug($amount . ' is more than ' . $compare . '. Return true.'); return true; } // found nothing. Log::debug($amount . ' is not more than ' . $compare . '. Return false.'); return false; } }