Home  >  Article  >  Backend Development  >  PHP array function sequence shuffle() and array_rand() introduction to the use of random functions

PHP array function sequence shuffle() and array_rand() introduction to the use of random functions

不言
不言Original
2018-06-06 11:24:501499browse

Shuffle and array_rand definition and usage, friends in need can refer to it.

shuffle() definition and usage
shuffle() function rearranges the elements in the array in random order.
If successful, return TRUE, otherwise return FALSE.
Note: This function assigns a new key name to the unit in the array. This will delete the original keys rather than just reorder them.
Note: As of PHP 4.2.0, it is no longer necessary to seed the random number generator with the srand() or mt_srand() function, it is now done automatically.
Syntax
shuffle(array) Parameter Description
array Required. Specifies the array to use.
Example

Copy code The code is as follows:

 "Dog", "b" => "Cat", "c" => "Horse"); 
shuffle($my_array); print_r($my_array); 
?>

Output:

Array ( [0] => Cat [1] => Horse [2] => Dog )

array_rand() definition And usage
array_rand() function randomly selects one or more elements from the array and returns it.
The second parameter is used to determine how many elements to select. If more than one element is selected, an array containing a random key is returned, otherwise the key of the element is returned.
Note: If the number of indexes extracted by the specified array_rand() function is greater than 1, then regardless of whether it is a numeric index array or an associative array, the key of the original array will be obtained and placed in a new index array.
Note: As of PHP 4.2.0, it is no longer necessary to seed the random number generator with the srand() or mt_srand() function, it is now done automatically.
Syntax
array_rand(array,number) Parameter Description
array Required. Specifies the input array parameters.
number Optional. The default is 1. Specifies how many random elements to return.
Example 1

Copy code The code is as follows:

"Dog","b"=>"Cat","c"=>"Horse"); 
print_r(array_rand($a,1)); 
?>

Output:

b

Example 2
With Array with string keys:

Copy code The code is as follows:

"Dog","b"=>"Cat","c"=>"Horse"); 
print_r(array_rand($a,2)); 
?>

Output:

Array ( [0] => c [1] => b )

Related recommendations:

PHP rounding, rounding, and round functions are used

The above is the detailed content of PHP array function sequence shuffle() and array_rand() introduction to the use of random functions. 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