Answers for "check decimal value except .00 php"

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 "check decimal value except .00 php"

Browse Popular Code Answers by Language