收藏本站 收藏本站
积木网首页 - 软件测试 - 常用手册 - 站长工具 - 技术社区
首页 > PHP > PHP数学函数 > 正文

首页 - PHP - 数据库 - 操作系统 - 游戏开发 - JS - Android - MySql - Redis - MongoDB - Win8 - Shell编程 - DOS命令 - jQuery - CSS样式 - Python - Perl

Access - Oracle - DB2 - SQLServer - MsSql2008 - MsSql2005 - Sqlite - PostgreSQL - node.js - extjs - JavaScript vbs - Powershell - Ruby

PHP技巧 - PHP基础 - PHP实例 - PHP字符串 - PHP数据库函数 - Mysql函数 - PDO类库 - PHP错误处理 - PHP选项 - PHP函数库 - PHP数学函数 - PHP数组

PHP:mt_rand()的用法_Math函数

mt_rand

(PHP 4, PHP 5)

mt_rand — 生成更好的随机数

说明

int mt_rand ( void ) int mt_rand ( int $min , int $max )

很多老的 libc 的随机数发生器具有一些不确定和未知的特性而且很慢。PHP 的 rand() 函数默认使用 libc 随机数发生器。mt_rand() 函数是非正式用来替换它的。该函数用了 » Mersenne Twister 中已知的特性作为随机数发生器,它可以产生随机数值的平均速度比 libc 提供的 rand() 快四倍。

如果没有提供可选参数 minmaxmt_rand() 返回 0 到 mt_getrandmax() 之间的伪随机数。例如想要 5 到 15(包括 5 和 15)之间的随机数,用 mt_rand(5, 15)。

参数

min

可选的、返回的最小值(默认:0)

max

可选的、返回的最大值(默认:mt_getrandmax())

返回值

返回 min (或者 0) 到 max (或者是到 mt_getrandmax() ,包含这个值)之间的随机整数。

更新日志

版本 说明 4.2.0随机数发生器自动进行播种。

范例

Example #1 mt_rand() 例子

<?php
echo mt_rand() . "n";
echo mt_rand() . "n";

echo mt_rand(5, 15);
?>

以上例程的输出类似于:

1604716014
1478613278
6

注释

Caution

The distribution of mt_rand() return values is biased towards even numbers on 64-bit builds of PHP when max is beyond 2^32.

参见

mt_srand() - 播下一个更好的随机数发生器种子 mt_getrandmax() - 显示随机数的最大可能值 rand() - 产生一个随机整数

PHP:tanh()的用法_Math函数
tanh(PHP4=4.1.0,PHP5)tanh双曲正切说明floattanh(float$arg)返回arg的双曲正切值,定义为sinh(arg)/cosh(arg)。参数arg要处理的参数返回值arg的双曲正切值参见tan()-正切a

PHP:tan()的用法_Math函数
tan(PHP4,PHP5)tan正切说明floattan(float$arg)tan()返回参数arg的正切值。参数arg的单位为弧度。参数arg要处理的以弧度为单位的参数返回值arg的正切值范例Example#1

PHP:rand()的用法_Math函数
rand(PHP4,PHP5)rand产生一个随机整数说明intrand(void)intrand(int$min,int$max)如果没有提供可选参数min和max,rand()返回0到getrandmax()之间的伪随机整数。例如想要5到1

本周排行

更新排行

强悍的草根IT技术社区,这里应该有您想要的!
Copyright © 2010 Gimoo.Net. All Rights Rreserved  京ICP备05050695号