<?php 
$dosyalar = array(
    '1.txt',
    '2.txt',
    '3.txt',
    '4.txt',
    '5.txt'
);
$handle = @fopen($dosyalar[array_rand($dosyalar)], "r"); 
if ($handle) { 
    while (!feof($handle)) { 
        $buffer = fgets($handle, 4096); 
        echo $buffer; 
    } 
    fclose($handle); 
} 
?>