Спасибо... поставил бы + обоим, то вот не могу, пишет что надо поставить кому нить, и так у всех... =(
Бля.. ничего хорошего... я обновляю страницу, и мне поновой дописывает и дописывает... а мне надо что бы дописывало только новое... все равно не то..
.::BARS::. ты Олень Ленивый. PHP: <?php $file = file_get_contents('http://bash.org.ru/rss/'); preg_match_all('#<title>Цитата \#([0-9]+)</title>#i',$file,$id); preg_match_all('#<pubDate>(.+)</pubDate>#i',$file,$time); preg_match_all('#<description><!\[CDATA\[(.+)\]\]></description>#i',$file,$content); $filename = "quotes.txt"; $handle = fopen($filename, "a+"); $cont = @fread($handle, filesize($filename)); for($i=0;$i<count($id[1]);$i++) { if(strpos($cont,$id[1][$i])) continue; $str = "[{$id[1][$i]}][{$time[1][$i]}]\r\n{$content[1][$i]}\r\n"; fwrite($handle, $str); } fclose($handle); echo 'Done!'; ?>