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

WBOY
Release: 2016-06-13 10:38:36
Original
1319 people have browsed it

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

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

?

原文网站:http://www.php.net/manual/en/function.mt-getrandmax.php

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!