Return a random key from an array:


SUBMITTED BY: henry1874w

DATE: June 25, 2017, 2:37 p.m.

FORMAT: Text only

SIZE: 99 Bytes

HITS: 223

  1. <?php
  2. $a=array("a"=>"red","b"=>"green","c"=>"blue","d"=>"yellow");
  3. print_r(array_rand($a,1));
  4. ?>

comments powered by Disqus