Размер файла: 1.04Kb
<?
// Грабер загрузок с сайта wap.telon.ru
// Ежедневные Обновления
#Настройки
$url="ВАШ САЙТ"; //ВАШ САЙТ
$title="Заголовок страниц"; //Заголовок страниц
#Начинаем грабить
$file=file("http://telon.ru/down.php?$QUERY_STRING");
$file=implode("", $file);
$file=str_replace("WAP.TELON.RU", $title, $file);
$file=str_replace("wap.telon.ru", $url, $file);
$file = preg_replace('~<a href="http://[^<]+?[.]playfon[.]ru/[^<]+?"[[:space:]]*>[^<]+?</a>[[:space:]]*(<br/>)*?[[:space:]]*(<br[[:space:]]*/>)+~s','',$file);
$file = preg_replace('~<a href="http://[^<]+?[.]hotfon[.]ru/[^<]+?"[[:space:]]*>[^<]+?</a>[[:space:]]*(<br/>)*?[[:space:]]*(<br[[:space:]]*/>)+~s','',$file);
$file=str_replace("down.php", "index.php", $file);
#Выводим что награбили
if($file){header ("Content-type:text/vnd.wap.wml; charset=utf-8");
print $file;}else{
print 'Раздел загрузок временно не доступен';}
#The END
?>