Доброго времени суток, хочу сделать, вывод 5 случайных статусов, например из test.ru/status.txt
вывод на сайт
Скинь пример отображения статусов
Которые в status.txt
<?php
$txt = file('путь к txt файлу');
$str = $txt[array_rand($txt, 5)];
echo $str;
?>
Денис Павлик, Warning: file(/status.txt) [function.file]: failed to open stream: No such file or directory in G:home\test1.ru\www\test.php on line 3
Warning: array_rand() expects parameter 1 to be array, boolean given in G:home\test1.ru\www\test.php on line 5
Добавлено 06.07.16 в 01:31:46:
в чем ошибка? бро
Мде. Сделай через массив и выводи рандомом
Deluxe, путь серверный указывать нужно.
$txt = file($_SERVER['DOCUMENT_ROOT'].'/status.txt');
Денис Павлик,
Warning: array_rand() [function.array-rand]: Second argument has to be between 1 and the number of elements in the array in G:\home\test.ru\www\test.php on line 5