I
i-mate
Прохожие
- Автор темы
- #1
Нужен скрипт для вывода рандомного текста с функцией самоудаления текста,который уже показывался. есть такой?
Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<?
$strs = file('strs.txt');
if(count($strs)>0)
{
shuffle($strs);
echo array_shift($strs);
file_put_contents('strs.txt', implode('', $strs));
}
?>
function file_put_contents($filename, $str)
{
$f = fopen($filename, 'w');
if($f)
{
fputs($f, $str);
fclose($f);
}
else
die("Can't open ".$filename);
}
<?
function file_put_contents($filename, $str)
{
$f = fopen($filename, 'w');
if($f)
{
fputs($f, $str);
fclose($f);
}
else
die("Can't open ".$filename);
}
$strs = file('strs.txt');
if(count($strs)>0)
{
shuffle($strs);
echo array_shift($strs);
file_put_contents('strs.txt', implode('', $strs));
}
?>