使用PHP下载MP3和MP4文件

yr9zkbsy  于 2023-01-29  发布在  PHP
关注(0)|答案(2)|浏览(418)

我正在为MP3和MP4的下载器,我想在2个按钮调用两个PHP文件,但只有第一个PHP文件的PHP文件的作品。
popup.php的代码

<?php
    include "downloadmp3.php";
    include "downloadmp4.php";
?>
<html>
<head></head>
<body bgcolor="#E6E6E6">
    <form method="post">
        <label for="url">Download mp3:</label>
        <input type="text" name="url" value="" id="url">
        <input type="submit" name="submit" value="Download">
        <hr>
    </form>
    <form method="post">
        <label for="url1">Download mp4:</label>
        <input type="text" name="url1" value="" id="url1">
        <input type="submit" name="submit" value="Download">
    </form>
</body>
</html>

用于下载mp3.php的代码

<?php
if ($_SERVER['REQUEST_METHOD'] == 'POST'){
    $url = (isset($_POST['url']) && !empty($_POST['url'])) ? $_POST['url'] : false;
    if (!$url) {
        echo "Vul alstublieft een url in";
    } else {
        $source = file_get_contents($url);
        $source = urldecode($source);

        // Verkrijg de video titel.
        $vTitle_results_1 = explode('<title>', $source);
        $vTitle_results_2 = explode('</title>', $vTitle_results_1[1]);

        $title = trim(str_replace(' – YouTube', ”, trim($vTitle_results_2[0])));

        // Extract video download URL.
        $dURL_results_1 = explode('url_encoded_fmt_stream_map', "url=", $source);
        $dURL_results_2 = explode('\u0026quality', $dURL_results_1[1]);

        // Force download van d  video.
        $file = str_replace(' ', '_', strtolower($title)).'.mp4';

        header("Cache-Control: public");
        header("Content-Description: File Transfer");
        header("Content-Disposition: attachment; filename=$file");
        header("Content-Type: video/mp4");
        header("Content-Transfer-Encoding: binary");

        readfile($dURL_results_2[0]);

        exit;
    }
}
?>

以及下载mp4.php的代码

<?php
if ($_SERVER['REQUEST_METHOD'] == 'POST'){
    $url = (isset($_POST['url1']) && !empty($_POST['url1'])) ? $_POST['url1'] : false;
    if (!$url) {
        echo "Vul alstublieft een url in";
    } else {
        $source = file_get_contents($url);
        $source = urldecode($source);

        // Verkrijg de video titel.
        $vTitle_results_1 = explode('<title>', $source);
        $vTitle_results_2 = explode('</title>', $vTitle_results_1[1]);

        $title = trim(str_replace(' – YouTube', ”, trim($vTitle_results_2[0])));

        // Extract video download URL.
        $dURL_results_1 = explode('url_encoded_fmt_stream_map', "url1=", $source);
        $dURL_results_2 = explode('\u0026quality', $dURL_results_1[1]);

        // Force download van d  video.
        $file = str_replace(' ', '_', strtolower($title)).'.mp4';

        header("Cache-Control: public");
        header("Content-Description: File Transfer");
        header("Content-Disposition: attachment; filename=$file");
        header("Content-Type: video/mp4");
        header("Content-Transfer-Encoding: binary");

        readfile($dURL_results_2[0]);

        exit;
    }
}
?>

**已更新:**为MP3格式提交的表单可以工作。但为MP4格式提交的表单不工作。请提供解决方案以使其工作。

gwbalxhn

gwbalxhn1#

由于以下if条件,只有第一个php文件调用有效:

if ($_SERVER['REQUEST_METHOD'] == 'POST'){

因为downloadmp3.php已经被首先包含,所以它的if condition正在给出结果。使用适当的表单处理程序使它工作。最好的做法是为表单使用唯一的名称。

zc0qhyus

zc0qhyus2#

这段代码在所有浏览器中都运行良好,下载的文件也运行良好:download-audio.php
测试. html

相关问题