Описание:
Това е работещ клас на PHP за сваляне на видео файлове от VBOX7.
Използва CURL за изпращане на POST REQUEST, който връща директния URL адрес към видео файла.
Този клас може да се ползва и модифицира без никакви ограничения.
Автор: GNNMobile.eu
Код:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class VBox7 { | |
private $vid = null; | |
private $url = null; | |
public function setVideo($vid){ | |
$this->vid = $vid; | |
} | |
public function execute(){ | |
if (isset($this->vid)) { | |
$url = 'http://vbox7.com/play/magare.do'; | |
$body = sprintf('vid=%s', $this->vid); | |
$c = curl_init($url);curl_setopt($c, CURLOPT_POST, true); | |
curl_setopt($c, CURLOPT_POSTFIELDS, $body); | |
curl_setopt($c, CURLOPT_RETURNTRANSFER, true); | |
$page = curl_exec($c); | |
curl_close($c); | |
if (preg_match('@(http:\/\/media[0-9]+\.vbox7\.com\/s\/[a-z0-9]{2}\/[a-z0-9]+\.)(flv|mp4)@ui', $page, $matches)) { | |
$this->url = $matches[0]; | |
return true; | |
} | |
} | |
return false; | |
} | |
public function getVideo(){ | |
return $this->url; | |
} | |
} |
Пример:
$vbox = new Vbox7;
$vbox->setVideo($_POST['video']);
if ($vbox->execute()) {
echo '<a href="'.$vbox->getVideo().'">свали видео файл</a>';
}