输入banner图图片脚本导航/分类

php生成0到1(小数)的随机数

function randomFloat($min = 0, $max = 1) {
return $min + mt_rand() / mt_getrandmax() * ($max - $min);
}