Skip to content

Instantly share code, notes, and snippets.

@irazasyed
Created April 14, 2013 12:59
Show Gist options
  • Save irazasyed/5382635 to your computer and use it in GitHub Desktop.
Save irazasyed/5382635 to your computer and use it in GitHub Desktop.
PHP: Get random line from file
/*-------------------------------------------------+
| Get random line from file
+-------------------------------------------------*/
function getRandomLine($filename) {
$lines = file($filename) ;
return $lines[array_rand($lines)] ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment