Ver originalfunction descuento($valor){ $retorno = 0; $values=array(10,30,45); foreach ($values as $dto) { if ($dto > $valor) { break; } $retorno = $dto; } return $retorno;} echo descuento(22);