Answers for "php check how many decimals"

PHP
13

php 3 digit decimal

return number_format((float)$number, 2, '.', '');
Posted by: Guest on October-23-2020
0

php form detect if number has decimals

function is_decimal( $val )
{
    return is_numeric( $val ) && floor( $val ) != $val;
}
Posted by: Guest on November-05-2021

Code answers related to "php check how many decimals"

Browse Popular Code Answers by Language