摘要: 生成固定位数的随机数 function generate_code($length = 4) { $min = pow(10 , ($length - 1)); $max = pow(10, $length) - 1; return rand($min, $max); } 生成固定位数的随机数 fu 阅读全文
posted @ 2016-08-10 11:50 阳光小白 阅读(1293) 评论(0) 推荐(0) 编辑