<?php function getBalanceColor($balance) : string { if($balance <= 0) { return 'red'; } // The OP said 1, but just in case there's fractional let's use 0 if($balance > 0 && $balance <= 5){ return 'yellow'; } return 'green'; }
You have javascript disabled. You will not be able to edit any code.