在本文中,我们将学习 PHP 中的随机数生成器。那么什么是随机数生成器?
我们可以使用内置函数生成随机数或整数。这些功能有什么作用?这些函数在最小值和最大值范围内生成不同的数字集。每次调用此函数时,它都会生成一个唯一的数字。我们可以生成任何编号的数字,例如 2 位数字、3 位数字等。
广告 该类别中的热门课程 PHP 开发人员 - 专业化 | 8 门课程系列 | 3次模拟测试开始您的免费软件开发课程
网络开发、编程语言、软件测试及其他
数字在范围内进行洗牌并相应地生成。有各种内置函数可以生成随机数。
现在我们将学习生成伪随机数的不同函数:
我们将通过所提到的每种类型函数的示例来学习语法。
语法:
雷雷示例:
雷雷输出:
此函数为 rand() 函数提供范围。
语法:
雷雷其中 min 是可选的最小值,表示最低数值,max 是可选的最大值,表示最高数值。
此外,min 的默认值为零,max 的默认值是 getrandmax() 函数值。函数的返回类型始终是整数。
示例:
雷雷输出:
语法:
雷雷其中 min 是可选值,表示最小数字,max 是可选值,表示最大数字。 min 的默认值为 0,max 的默认值为给定的最高值。返回类型是整数。
示例:
雷雷输出:
语法:
雷雷该函数返回一个整数值
示例:
雷雷输出:
语法:
雷雷该函数返回一个整数值。
示例:
雷雷输出:
语法:
雷雷其中种子是可选值,并且此函数不返回任何内容。
示例:
雷雷输出:
Example:
'; mt_srand(5); echo mt_rand(1,5); ?>
Output:
In the following example we have used rand(),rand(min,max) and mt_rand().
Code:
Any random number ---->'. rand(); echo '
Any random number ---->'. rand(); echo '
'; // random number with range echo 'Following are the different random values within a range '; echo '
Any random number within the range from 0 to 9----> '. rand(0,9); echo '
Any random number within the range from 1000 to 9999 ---->'. rand(1000,9999); echo '
'; // random number with range echo 'Following are the different random values using mt_rand() '; echo '
Using mt_rand()---->'. mt_rand(1000,9999); echo '
Using mt_rand()---->'. mt_rand(100,999); ?>
Output:
Floating-point numbers represent a number with decimals that are of the type float. Examples – 10.0, 8.12, 6.23e-5, 2.345, 2.98e+10 and more.
Code:
'; echo "
".fun(1, 10, 2); ?>
Output:
In this article, we learned about various functions used to generate a random number in PHP. These functions are explained with sample examples. Hope this article is found useful to anyone who wants to learn a random number generator in PHP.
以上是PHP 中的随机数生成器的详细内容。更多信息请关注PHP中文网其他相关文章!