<?php $file_in = 'text.txt'; $file_out = 'result.txt'; $line = file($file_in); for ($i = 0; $i < count($line); $i++) { $rand = rand(0, count($line) -1); $temp = $line[$rand]; $line[$rand] = $line[$i]; $line[$i] = $temp; } file_put_contents($file_out); ?>