Просмотр поста

.
Rakovskiy
The Fast, Secure and Professional - Yii2
kiberpank,
$ch = curl_init();
curl_setopt ($ch , CURLOPT_URL , "http://films.gegas.ru/" . $_GET['act']);
curl_setopt ($ch , CURLOPT_USERAGENT , "Mozilla/5.0 (Windows; U; Windows NT 6.1; ru-RU; rv:1.7.12) Gecko/20050919 Firefox/1.0.7"); //типа мы делаем это из мозиллы
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
$content = curl_exec($ch);
curl_close($ch);
iconv("windows-1251","utf-8", $content);
$content = str_replace('<a href="','<a href="?act=',$content);
$content = str_replace('<a href="?act=/download','<a href="http://films.gegas.ru/download',$content);
echo $content;