Advertisement
Guest User

Untitled

a guest
May 30th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. public function getRandomFile($path){
  2. $files = $this->getFiles($path);
  3. $range_max = count($files);
  4. $index = $this->getRandom($range_max, 1);
  5.  
  6. return $files[($index)];
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement