3v4l.org

run code in 300+ PHP versions simultaneously
<?php function array_rand_secure($array, $num = 1) { if (!is_array($array)) { trigger_error( __FUNCTION__ . "(): expects parameter 1 to be array, " . gettype($array) . " given", E_USER_WARNING ); return null; } $arrayLength = count($array); if ($arrayLength === 0) { trigger_error(__FUNCTION__ . "(): Array is empty", E_USER_WARNING); return null; } if ( filter_var($num, FILTER_VALIDATE_INT) === false || $num <= 0 || ($arrayLength - $num) < 0 ) { trigger_error( __FUNCTION__ . "(): Second argument has to be between 1 and the number of elements in the array", E_USER_WARNING); return null; } $randomIndexes = []; while(count($randomIndexes) < $num) { $randomInt = random_int(0, $arrayLength - 1); if (!in_array($randomInt, $randomIndexes)) $randomIndexes[] = $randomInt; }; $arrayKeys = array_keys($array); $randomKeys = array_map(function ($key) use ($arrayKeys) { return $arrayKeys[$key]; }, $randomIndexes); return count($randomKeys) === 1 ? $randomKeys[0] : $randomKeys; } $tests1 = [ [1, 2, 3, 4, 5, 6, 7, 8, 9], [5, 6, 7], ['a' => 1, 'b' => 2, 'c' => 3], ['zero', 4 => 'four', 9 => 'nine'], ["PEAN"=>0], [], "ABC", 123, ]; foreach ($tests1 as $test) { var_dump(array_rand_secure($test)); } $tests2 = [ ["array" => [1, 2, 3, 4, 5, 6, 7, 8, 9], "num" => 9], ["array" => [1, 2, 3, 4, 5, 6, 7, 8, 9], "num" => 4], ["array" => ['a' => 1, 'b' => 2, 'c' => 3], "num" => 2], ["array" => ['zero', 4 => 'four', 9 => 'nine'], "num" => 2], ["array" => ["PEAN" => 0], "num" => 2], ["array" => [], "num" => 2], ["array" => "ABC", "num" => 2], ["array" => 123, "num" => 2], ["array" => [5, 6, 7], "num" => 0], ]; foreach ($tests2 as $test_data) { var_dump(array_rand_secure($test_data["array"], $test_data["num"])); }
Output for git.master_jit
int(6) int(2) string(1) "c" int(0) string(4) "PEAN" Warning: array_rand_secure(): Array is empty in /in/HGnAk on line 14 NULL Warning: array_rand_secure(): expects parameter 1 to be array, string given in /in/HGnAk on line 6 NULL Warning: array_rand_secure(): expects parameter 1 to be array, integer given in /in/HGnAk on line 6 NULL array(9) { [0]=> int(1) [1]=> int(2) [2]=> int(5) [3]=> int(4) [4]=> int(0) [5]=> int(6) [6]=> int(8) [7]=> int(7) [8]=> int(3) } array(4) { [0]=> int(2) [1]=> int(3) [2]=> int(4) [3]=> int(7) } array(2) { [0]=> string(1) "c" [1]=> string(1) "b" } array(2) { [0]=> int(9) [1]=> int(4) } Warning: array_rand_secure(): Second argument has to be between 1 and the number of elements in the array in /in/HGnAk on line 22 NULL Warning: array_rand_secure(): Array is empty in /in/HGnAk on line 14 NULL Warning: array_rand_secure(): expects parameter 1 to be array, string given in /in/HGnAk on line 6 NULL Warning: array_rand_secure(): expects parameter 1 to be array, integer given in /in/HGnAk on line 6 NULL Warning: array_rand_secure(): Second argument has to be between 1 and the number of elements in the array in /in/HGnAk on line 22 NULL
Output for git.master
int(7) int(0) string(1) "a" int(4) string(4) "PEAN" Warning: array_rand_secure(): Array is empty in /in/HGnAk on line 14 NULL Warning: array_rand_secure(): expects parameter 1 to be array, string given in /in/HGnAk on line 6 NULL Warning: array_rand_secure(): expects parameter 1 to be array, integer given in /in/HGnAk on line 6 NULL array(9) { [0]=> int(7) [1]=> int(0) [2]=> int(8) [3]=> int(5) [4]=> int(1) [5]=> int(3) [6]=> int(2) [7]=> int(4) [8]=> int(6) } array(4) { [0]=> int(3) [1]=> int(4) [2]=> int(6) [3]=> int(8) } array(2) { [0]=> string(1) "a" [1]=> string(1) "c" } array(2) { [0]=> int(4) [1]=> int(9) } Warning: array_rand_secure(): Second argument has to be between 1 and the number of elements in the array in /in/HGnAk on line 22 NULL Warning: array_rand_secure(): Array is empty in /in/HGnAk on line 14 NULL Warning: array_rand_secure(): expects parameter 1 to be array, string given in /in/HGnAk on line 6 NULL Warning: array_rand_secure(): expects parameter 1 to be array, integer given in /in/HGnAk on line 6 NULL Warning: array_rand_secure(): Second argument has to be between 1 and the number of elements in the array in /in/HGnAk on line 22 NULL
Output for rfc.property-hooks
int(6) int(0) string(1) "c" int(0) string(4) "PEAN" Warning: array_rand_secure(): Array is empty in /in/HGnAk on line 14 NULL Warning: array_rand_secure(): expects parameter 1 to be array, string given in /in/HGnAk on line 6 NULL Warning: array_rand_secure(): expects parameter 1 to be array, integer given in /in/HGnAk on line 6 NULL array(9) { [0]=> int(7) [1]=> int(5) [2]=> int(0) [3]=> int(2) [4]=> int(4) [5]=> int(8) [6]=> int(1) [7]=> int(3) [8]=> int(6) } array(4) { [0]=> int(5) [1]=> int(6) [2]=> int(8) [3]=> int(1) } array(2) { [0]=> string(1) "c" [1]=> string(1) "b" } array(2) { [0]=> int(4) [1]=> int(9) } Warning: array_rand_secure(): Second argument has to be between 1 and the number of elements in the array in /in/HGnAk on line 22 NULL Warning: array_rand_secure(): Array is empty in /in/HGnAk on line 14 NULL Warning: array_rand_secure(): expects parameter 1 to be array, string given in /in/HGnAk on line 6 NULL Warning: array_rand_secure(): expects parameter 1 to be array, integer given in /in/HGnAk on line 6 NULL Warning: array_rand_secure(): Second argument has to be between 1 and the number of elements in the array in /in/HGnAk on line 22 NULL

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
26.91 ms | 413 KiB | 5 Q