fork download
  1. <?php
  2.  
  3. $GLOBALS['test'] = [
  4. ['id' => 30009, 'url' => 333222],
  5. ['id' => 33351, 'url' => 555666],
  6. ];
  7.  
  8. function my_array_rand($array) {
  9. static $i = 0;
  10. $keys = array_keys($array);
  11. return $keys[$i++ % count($array)];
  12. }
  13.  
  14. for ($i = 0; $i < 3; $i++) {
  15. var_dump($GLOBALS['test'][my_array_rand($GLOBALS['test'])]);
  16. }
  17.  
Success #stdin #stdout 0.02s 52480KB
stdin
Standard input is empty
stdout
array(2) {
  ["id"]=>
  int(30009)
  ["url"]=>
  int(333222)
}
array(2) {
  ["id"]=>
  int(33351)
  ["url"]=>
  int(555666)
}
array(2) {
  ["id"]=>
  int(30009)
  ["url"]=>
  int(333222)
}