18.12.1 Problem
You want to randomly reorder all lines in a file. You have a
file of funny quotes, for example, and you want to pick out one at random.
18.12.2 Solution
Read all the lines in the file into an array with file(
) , and then shuffle the
elements of the array:
$lines = file('quotes-of-the-day.txt');
$lines = pc_array_shuffle($lines);