Dark_YS_Shark
Постоялец
- Регистрация
- 1 Июл 2007
- Сообщения
- 118
- Реакции
- 9
- Автор темы
- #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.
это ты про дорвей? ))
<?
$str = file_get_contents('text.ori');
$badChars = array(chr(10), chr(13));
$str = str_replace($badChars, ' ', $str);
$newstr = '';
while($newstr != $str)
{
if($newstr != '')$str = $newstr;
$newstr = str_replace(' ', ' ', $str);
}
$words = explode(' ', $str);
$links = file('links.txt');
$cWords = count($words);
$cLinks = count($links);
if($cWords>$cLinks)
{
$step = intval($cWords/$cLinks);
for($i = 0; $i < $cLinks; $i++)
$words[$i*$step] = '<a href="'.str_replace($badChars, '', $links[$i]).'">'.$words[$i*$step].'</a>';
file_put_contents('text.res', implode(' ', $words));
}
?>