Home  >  Article  >  Backend Development  >  How to use PHP random function

How to use PHP random function

墨辰丷
墨辰丷Original
2018-06-11 16:21:412444browse

This article mainly introduces the usage of PHP random function. Interested friends can refer to it. I hope it will be helpful to everyone.

Written in front

The classic usage of PHP syntax features and related function libraries may not really achieve the effect of making a big difference, but mastering these methods can There will be some help in your work and study!

2. Preface

PHP is a common scripting language, mainly because it is easy to learn and quick to use. Almost 50% of Web programs have PHP. (Incomplete statistics). PHP provides a wealth of functions and API interfaces for development, which makes it very convenient for us to use its powerful built-in functions and extensions.

3. PHP random functions

PHP random functions mainly include rand, mt_rand, array_rand, and the randomly "arranged" (shuffled) functions shuffle and str_shuffle , a uniqid that can generate a unique ID.

1. rand generates random numbers:

<?php
$base = &#39;abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789&#39;;
$count = strlen($base);
$random = &#39;&#39;;
for ($i=0; $i < 16; $i++) { 
 $random.=$base[rand(0,$count-1)];
}
echo $random;
?>

rand() function is a random number generator using libc Generating random numbers is generally slow and has uncertain factors. It is recommended to use the mt_rand function instead.

The getrandmax() function can return the maximum random number that the rand function can generate (my system is 32767), so when setting the second parameter of the rand function, do not exceed the return value of getrandmax.

2. mt_rand generates random numbers:

<?php
$base = &#39;abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789&#39;;
$count = strlen($base);
$random = &#39;&#39;;
for ($i=0; $i < 16; $i++) { 
 $random.=$base[mt_rand(0,$count-1)];
}
echo $random;
?>

Many old libc random number generators have some inconsistencies Certain and unknown properties and very slow. PHP's rand() function uses the libc random number generator by default. The mt_rand() function is informally used to replace it. This function uses the known features of » Mersenne Twister as a random number generator, which can generate random values ​​on average four times faster than rand() provided by libc. It is strongly recommended to use the mt_rand function instead of rand during development.

If the optional parameters min and max are not provided, mt_rand() returns a pseudo-random number between 0 and mt_getrandmax(). For example, if you want a random number between 3 and 20 (inclusive), use mt_rand(3, 20).

3. array_rand function

<?php
$base = array(&#39;a&#39;,&#39;b&#39;,&#39;c&#39;,&#39;d&#39;,&#39;e&#39;,&#39;f&#39;,&#39;g&#39;,&#39;h&#39;,&#39;i&#39;,&#39;j&#39;,&#39;k&#39;,&#39;l&#39;,&#39;m&#39;,&#39;n&#39;,&#39;o&#39;,&#39;p&#39;,&#39;q&#39;,&#39;r&#39;,&#39;s&#39;,&#39;t&#39;,&#39;u&#39;,&#39;v&#39;,&#39;w&#39;,&#39;x&#39;,&#39;y&#39;,&#39;z&#39;,&#39;A&#39;,&#39;B&#39;,&#39;C&#39;,&#39;D&#39;,&#39;E&#39;,&#39;F&#39;,&#39;G&#39;,&#39;H&#39;,&#39;I&#39;,&#39;J&#39;,&#39;K&#39;,&#39;L&#39;,&#39;M&#39;,&#39;N&#39;,&#39;O&#39;,&#39;P&#39;,&#39;Q&#39;,&#39;R&#39;,&#39;S&#39;,&#39;T&#39;,&#39;U&#39;,&#39;V&#39;,&#39;W&#39;,&#39;X&#39;,&#39;Y&#39;,&#39;Z&#39;,&#39;0&#39;,&#39;1&#39;,&#39;2&#39;,&#39;3&#39;,&#39;4&#39;,&#39;5&#39;,&#39;6&#39;,&#39;7&#39;,&#39;8&#39;,&#39;9&#39;);
 
$random = &#39;&#39;;
for ($i=0; $i < 16; $i++) { 
 $random.=$base[array_rand($base)];
}
echo $random;
?>

array_rand returns a random key value in the array, somewhat similar to the mt_rand() function , the rest is nothing special, just use it flexibly.

4. shuffle function

<?php
$base = array(&#39;a&#39;,&#39;b&#39;,&#39;c&#39;,&#39;d&#39;,&#39;e&#39;,&#39;f&#39;,&#39;g&#39;,&#39;h&#39;,&#39;i&#39;,&#39;j&#39;,&#39;k&#39;,&#39;l&#39;,&#39;m&#39;,&#39;n&#39;,&#39;o&#39;,&#39;p&#39;,&#39;q&#39;,&#39;r&#39;,&#39;s&#39;,&#39;t&#39;,&#39;u&#39;,&#39;v&#39;,&#39;w&#39;,&#39;x&#39;,&#39;y&#39;,&#39;z&#39;,&#39;A&#39;,&#39;B&#39;,&#39;C&#39;,&#39;D&#39;,&#39;E&#39;,&#39;F&#39;,&#39;G&#39;,&#39;H&#39;,&#39;I&#39;,&#39;J&#39;,&#39;K&#39;,&#39;L&#39;,&#39;M&#39;,&#39;N&#39;,&#39;O&#39;,&#39;P&#39;,&#39;Q&#39;,&#39;R&#39;,&#39;S&#39;,&#39;T&#39;,&#39;U&#39;,&#39;V&#39;,&#39;W&#39;,&#39;X&#39;,&#39;Y&#39;,&#39;Z&#39;,&#39;0&#39;,&#39;1&#39;,&#39;2&#39;,&#39;3&#39;,&#39;4&#39;,&#39;5&#39;,&#39;6&#39;,&#39;7&#39;,&#39;8&#39;,&#39;9&#39;);
if(shuffle($base)){
 print_r($base);
}
?>

The shuffle function is to disrupt the sequence of an array, which is a bit random. means, it is placed in the random function here. The return value is a bool value, which is equivalent to directly referencing the original variable.

5. str_shuffle function

##

<?php
$base = &#39;abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789&#39;;
echo str_shuffle($base);
?>

The function of str_shuffle here is similar to the function of shuffle. The only difference is the return value. The original string of str_shuffle remains unchanged.

6. uniqid function

<?php
echo uniqid();
//54f806528172f
?>

uniqid can generate unique strings. The scope of this application can be quite wide.

4. Summary
Random function is almost the most basic function of every language, and PHP’s support for random functions is no exception. Here we introduce rand, mt_rand, array_rand, shuffle The basic usage of , str_shuffle, and uniqid functions can be used flexibly in combination with practical applications.

Summary: The above is the entire content of this article, I hope it will be helpful to everyone's study.

Related recommendations:

php common techniques for error handling

php implements web services Method

php Method of dynamically creating html code based on array

##

The above is the detailed content of How to use PHP random function. For more information, please follow other related articles on the PHP Chinese website!

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