Файл: video/index.php
Строк: 20
<?
include '../head.php';
###By maksamka###
function curl_get($url){
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl,CURLOPT_USERAGENT,'Opera/9.80 (Windows NT 5.1; U; ru) Presto/2.2.15 Version/10.10');
curl_setopt($curl, CURLOPT_REFERER, "http://library.zaycu.ru/");
curl_setopt($curl, CURLOPT_RETURNTRANSFER,1);
curl_setopt($curl, CURLOPT_TIMEOUT, 30);
$cnt = curl_exec($curl);
curl_close($curl);
return $cnt;
}
$file=curl_get('http://video.zaycu.ru/'.$_SERVER['QUERY_STRING']);
$file=preg_replace('|<br/> Не качается?(.*?)</a>|is', '',$file);
$file=preg_replace('|href="/comments(.*?)<br/>|is', '/>',$file);
$file=str_replace('href="/search/', 'href="poisk.php', $file);
$file=str_replace('href="/download/', 'href="http://video.zaycu.ru/download/', $file);
$file=str_replace('href="/', 'href="?', $file);
$file=str_replace('<div class="smarty_pages">', '', $file);
$file=preg_replace('|<!DOCTYPE(.*?)<div class="main">|is', '',$file);
$file=preg_replace('|<div class="navigation">(.*?)</html>|is', '',$file);
$file=preg_replace('|<form(.*?)</form>|is', '',$file);
$file=str_replace('</a><br/>', '</a></div><div class="row">', $file);
$file=preg_replace('|href="/comments(.*?)</a>|is', '',$file);
$file=str_replace("src ='http://zaycu.ru/img/", "src ='/down/img/", $file);
$file=str_replace("src='http://zaycu.ru/img/", "src='/down/img/", $file);
echo $file;
include '../foot.php';
?>