金融场景小数有效位数的处理,防科学计数法方法!【交易所】
函数直接上代码!<?phpfunction floattostr( $val ){ preg_match( "#^([\+\-]|)([0-9]*)(\.([0-9]*?)|)(0*)$#", trim($val), $o ); return $o[1].sprintf('%d',$o[2]).($o[3]!='.'?$o[3]:'');}?>...