Random\Randomizer::pickArrayKeys
(PHP 8 >= 8.2.0)
Random\Randomizer::pickArrayKeys — Select random array keys
Description
Uniformly selects num distinct array keys of the input array.
Each key of the input array is equally likely to be returned.
The selection of the array keys depends on the internal structure of the input array. The returned array keys might be different for two equal input arrays and two Random\Engines with identical state, depending on how the input arrays have been created.
Parameters
arrayThe array whose array keys are selected.
numThe number of array keys to return; must be between
1and the number of elements inarray.
Return Values
An array containing num distinct array keys of array.
The returned array will be a list (array_is_list()). It will be a subset of the array returned by array_keys().
Errors/Exceptions
- If
numis less than1or greater than the number of elements inarray, a ValueError will be thrown. - Any Throwables thrown by the Random\Engine::generate() method of the underlying
Random\Randomizer::$engine.
Examples
Example #1 Random\Randomizer::pickArrayKeys() example
<?php
$r = new \Random\Randomizer();
$fruits = [ 'red' => '๐', 'green' => '๐ฅ', 'yellow' => '๐', 'pink' => '๐', 'purple' => '๐' ];
// Pick 2 random array keys:
echo "Keys: ", implode(', ', $r->pickArrayKeys($fruits, 2)), "\n";
// Pick another 3:
echo "Keys: ", implode(', ', $r->pickArrayKeys($fruits, 3)), "\n";
?>The above example will output something similar to:
Keys: yellow, purple Keys: red, green, yellow
Example #2 Picking random values
<?php
$r = new \Random\Randomizer();
$fruits = [ 'red' => '๐', 'green' => '๐ฅ', 'yellow' => '๐', 'pink' => '๐', 'purple' => '๐' ];
$keys = $r->pickArrayKeys($fruits, 2);
// Look up the values for the picked keys.
$selection = array_map(
static fn ($key) => $fruits[$key],
$keys
);
echo "Values: ", implode(', ', $selection), "\n";
?>The above example will output something similar to:
Values: ๐, ๐
See Also
- array_keys() - Return all the keys or a subset of the keys of an array