Skip to content

Instantly share code, notes, and snippets.

@sdiama
Last active April 5, 2018 06:03
Show Gist options
  • Save sdiama/77db84464f0c24ee63ef1c8e27177c4b to your computer and use it in GitHub Desktop.
Save sdiama/77db84464f0c24ee63ef1c8e27177c4b to your computer and use it in GitHub Desktop.
/*-------------------------------------------------+
| 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