- Автор темы
- #1
Есть парсер... типа
$html=str_replace("download.gif", "download.gif title="$file = file('rand_text.txt'); echo $file[rand(0, (count($file)-1))];"", $html); /// вот эта шняга отказываеться работать!!
то ей трусы мешают.. то скобки не те... как можно из файла рандомно текст в этом случае подставлять??
PHP:
$handle = fopen('http://site.ru/index.php?act=' . $act . '&CODE=' . $CODE . '&f=' . $f . '&t=' . $t . '&view=' . $view . '&showuser=' . $showuser, 'r');
while (!feof($handle))
{
$html .= fread($handle, 4096);
}
$begin = '<html>';
$end = '</html>';
$beginloc = strpos($html, $begin) + strlen($begin);
$endloc = strpos($html, $end);
$html = substr($html, $beginloc, $endloc - $beginloc);
$html=str_replace("http://site.ru/", "http://site2.com/", $html);
$html=str_replace("download.gif", "download.gif title="$file = file('rand_text.txt'); echo $file[rand(0, (count($file)-1))];"", $html); /// вот эта шняга отказываеться работать!!
echo $html;
echo "</html>";
то ей трусы мешают.. то скобки не те... как можно из файла рандомно текст в этом случае подставлять??