PHP的死亡屏幕上完美的代码

时间:2015-06-05 16:33:14

标签: php audio video download youtube

到目前为止,我只是搞乱了javascript所以,我不知道php是如何工作的。我认为我已经在某个地方犯了一些新手的错误,我无法理解。

感谢您的帮助!

<?php
require('youtube-dl.class.php');
if(!isset($_POST['submit'])) {
    $url = $_POST['url'];
    try {
        new yt_downloader($url, TRUE, 'audio');
    }
    catch (Exception $e) {
        die($e->getMessage());
    }
}
?>

下载程序非常重要:https://github.com/eyecatchup/php-yt_downloader/

0 个答案:

没有答案