PHP show only significant (non-zero) decimals

前端 未结 11 1412
借酒劲吻你
借酒劲吻你 2021-01-07 19:32

In PHP (using built-in functions) I\'d like to convert/format a number with decimal, so that only the non-zero decimals show. However, another requirement of mine is that if

11条回答
  •  无人及你
    2021-01-07 19:51

    If you want a built-in solution and you're using a PHP version later than 4.2 you could try floatval():

    echo floatval(9.200);
    

    prints

    9.2
    

    but

    echo floatval(9.123);
    

    prints

    9.123
    

    Hope this helps.

提交回复
热议问题