PHP Formulario detectar si el número tiene decimales
function is_decimal( $val )
{
return is_numeric( $val ) && floor( $val ) != $val;
}
Stormy Swan
function is_decimal( $val )
{
return is_numeric( $val ) && floor( $val ) != $val;
}
number_format((float)$number, 2, '.', '')