/***随机生成0-100之间的小数点后8位*/function randomFloat($min=0,$max=1){return number_format($min + mt_rand() / mt_getrandmax() * ($max-$min),8);}