Home  >  Article  >  Backend Development  >  php生成零到1(小数)的随机数

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

WBOY
WBOYOriginal
2016-06-13 10:38:361320browse

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

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

?

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

Statement:
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