fork download
  1. <?php
  2. $numero = "5";
  3. $decimal = "30";
  4. echo (int)$numero + ((int)$decimal / 100.0);
  5. echo "\n";
  6. if (is_numeric($numero) && is_numeric($decimal)) echo (int)$numero + ((int)$decimal / 100.0);
  7. else echo "melhor não calcular, tem erro aí";
  8. $decimal = "a30";
  9. echo "\n";
  10. echo (int)$numero + ((int)$decimal / 100.0);
  11. echo "\n";
  12. if (is_numeric($numero) && is_numeric($decimal)) (int)$numero + ((int)$decimal / 100.0);
  13. else echo "melhor não calcular, tem erro aí";
  14.  
  15. //https://pt.stackoverflow.com/q/342357/101
Success #stdin #stdout 0.03s 82560KB
stdin
Standard input is empty
stdout
5.3
5.3
5
melhor não calcular, tem erro aí