search
HomeBackend DevelopmentPHP TutorialIntroduction to the source code of php downloading remote files

This article brings you an introduction to the source code of PHP downloading remote files. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

Recently encountered a problem with downloading files in pdf format. After downloading, I can't read or download.

The general idea is to download the file from a remote location first, then read and download it to the user's local computer. Then delete the file without further ado and directly paste the source code

It is best to use a combination of English numbers when naming remote files. Do not use Chinese names and you will encounter problems you can’t think of.

It also includes compression Please read the source code to download the details

<?php
set_time_limit(0);
//允许下载的url
$allowed_url = [
    &#39;&#39;,
    &#39;&#39;,
    &#39;&#39;]; // 允许的url
//$file_urls = post(&#39;file_urls&#39;);
$file_urls = &#39;&#39;;//远程文件路径

$file_url_arr = explode(&#39;,&#39;, $file_urls);
$file_url_arr = array_unique($file_url_arr); // 过滤相同url

//foreach ($file_url_arr as $key => $val) {
//    $url_arr = parse_url($val);
//    if (!isset($url_arr[&#39;host&#39;]) || !in_array($url_arr[&#39;host&#39;], $allowed_url)) {
//        unset($file_url_arr[$key]);
//    }
//}
if (empty($file_url_arr)) {
    $output = array(
        &#39;status&#39; => 2,
        &#39;code&#39; => 999,
        &#39;error&#39; => &#39;未找到合法url&#39;,
    );
    exit(json_encode($output));
}

$download_dir = ROOT.&#39;download&#39;.DIRECTORY_SEPARATOR;
if(!file_exists($download_dir)) mkdir($download_dir, 0777, true);
$tmp_dir = $download_dir.time().rand(100, 999).DIRECTORY_SEPARATOR; // 文件临时存放目录

$downloader = new fileDownloader();

if($file_url_arr && !empty($file_url_arr)) $downloader->download($tmp_dir, $file_url_arr); // 下载文件

$file_lists = scandir($tmp_dir);
$file_lists = array_diff($file_lists, [&#39;.&#39;, &#39;..&#39;]);
$file_lists = array_values($file_lists); // 重置索引
if(empty($file_lists)){
    $output = array(
        &#39;status&#39; => 2,
        &#39;code&#39; => 999,
        &#39;error&#39; => &#39;无下载文件&#39;,
    );
    exit(json_encode($output));
}

//if (count($file_lists) > 1) { // 如果是多个文件就压缩
//    $file_name = $downloader->compress($tmp_dir, $subject_title);
//} else {
    $file_name = $file_lists[0]; // 如果是单个文件就直接输出
//}

$file_headers = get_headers($file_urls, 1);
header("Cache-Control: public");
header("Content-Description: File Transfer");
//header(&#39;Content-disposition: attachment; filename=&#39;.basename($file_name)); //文件名
header(&#39;Content-Type: &#39;.$file_headers[&#39;Content-Type&#39;]); //zip
header("Content-Transfer-Encoding: binary"); //二进制文件
header(&#39;Content-Length: &#39;. filesize($tmp_dir.$file_name)); //文件大小

$user_agent = $_SERVER["HTTP_USER_AGENT"];
$encoded_name = rawurlencode($file_name);
if (preg_match("/Firefox/", $user_agent)) { //火狐浏览器
    header(&#39;Content-Disposition: attachment; filename*=utf-8\&#39;\&#39;&#39;.$encoded_name);
} else { // IE, 谷歌浏览器
    header(&#39;Content-Disposition: attachment; filename="&#39; . $file_name . &#39;"&#39;);
}
ob_clean();
flush();
@readfile($tmp_dir.$file_name);
$downloader->deleteDir($tmp_dir);

//文件下载类
class fileDownloader{

    // 下载文件
    // $dir 文件存放地址,绝对路径
    // $urls 文件下载地址
    public function download($dir, $urls = array()){
        if (!file_exists($dir)) {
            mkdir($dir, 0777, true);
        }
        if (empty($urls)) {
            return;
        }

        foreach ($urls as $val) {
            $file_name_arr = explode(&#39;/&#39;, $val); // 使用 / 分隔url
            $file_name = array_pop($file_name_arr); // 弹出数组的最后一个元素,作为文件名

            // 如果以linux作为主机,需要将utf文件名转换成GBK文件名
//                if (PHP_OS != &#39;WINNT&#39;) {
//                    $file_name = mb_convert_encoding($file_name, &#39;gbk&#39;, &#39;utf-8&#39;); // 把文件名从utf-8转换为gbk
//                }
//            $file_name = mb_convert_encoding($file_name, &#39;gbk&#39;, &#39;utf-8&#39;); // 把文件名从utf-8转换为gbk

            // 下载文件
            $ch = curl_init();
            curl_setopt($ch,CURLOPT_URL,$val);
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
            curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 0);
            $data = curl_exec($ch);
            error_log(var_export(curl_getinfo($ch), 1));
            curl_close($ch);
            if ($data) {
                // 保存文件
                file_put_contents($dir.$file_name, $data);
            }
        }
    }

    // 压缩文件
    // $dir 扫描目录
    // $filename 压缩文件名
    public function compress($dir, $filename = false){
        if (!file_exists($dir)) {
            return false;
        }

        $file_lists = scandir($dir); // 扫描文件夹
        $file_lists = array_diff($file_lists, [&#39;.&#39;, &#39;..&#39;]); //去除上级目录和当前目录
        if (empty($file_lists)) {
            return false;
        }

        if (!$filename) {
            $filename = time().rand(111, 999).&#39;.zip&#39;;
        } else {
            $filename .= &#39;.zip&#39;;
        }

        $fullname = $dir.$filename; // 带路径的压缩文件名
        if (!file_exists($fullname)) {
            $zip = new ZipArchive();
            if ($zip->open($fullname, ZipArchive::CREATE)==TRUE) {
                foreach($file_lists as $val){
                    if(file_exists($dir.$val)){
                        $zip->addFile($dir.$val, $val);
                    }
                }
                $zip->close();
            }
        }
        return $filename;
    }

    // 递归删除文件和文件夹
    // $path 要删除的文件路径
    public function deleteDir($path)
    {
        //如果是目录则继续
        if (is_dir($path)) {
            $file_lists = scandir($path);//扫描一个文件夹内的所有文件夹和文件并返回数组
            foreach ($file_lists as $val) {//排除目录中的.和..
                if ($val != "." && $val != "..") {//如果是目录则递归子目录,继续操作
                    if (is_dir($path . $val)) {//子目录中操作删除文件夹和文件
                        self::deleteDir($path . $val . &#39;/&#39;);//目录清空后删除空文件夹
                        @rmdir($path . $val . &#39;/&#39;);
                    } else {//如果是文件直接删除
                        unlink($path . $val);
                    }
                }
            }
            @rmdir($path);
        }
    }
}

The above is the detailed content of Introduction to the source code of php downloading remote files. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:CSDN. If there is any infringement, please contact admin@php.cn delete
The Continued Use of PHP: Reasons for Its EnduranceThe Continued Use of PHP: Reasons for Its EnduranceApr 19, 2025 am 12:23 AM

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP and Python: Exploring Their Similarities and DifferencesPHP and Python: Exploring Their Similarities and DifferencesApr 19, 2025 am 12:21 AM

PHP and Python are both high-level programming languages ​​that are widely used in web development, data processing and automation tasks. 1.PHP is often used to build dynamic websites and content management systems, while Python is often used to build web frameworks and data science. 2.PHP uses echo to output content, Python uses print. 3. Both support object-oriented programming, but the syntax and keywords are different. 4. PHP supports weak type conversion, while Python is more stringent. 5. PHP performance optimization includes using OPcache and asynchronous programming, while Python uses cProfile and asynchronous programming.

PHP and Python: Different Paradigms ExplainedPHP and Python: Different Paradigms ExplainedApr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python: A Deep Dive into Their HistoryPHP and Python: A Deep Dive into Their HistoryApr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Choosing Between PHP and Python: A GuideChoosing Between PHP and Python: A GuideApr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP and Frameworks: Modernizing the LanguagePHP and Frameworks: Modernizing the LanguageApr 18, 2025 am 12:14 AM

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHP's Impact: Web Development and BeyondPHP's Impact: Web Development and BeyondApr 18, 2025 am 12:10 AM

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

How does PHP type hinting work, including scalar types, return types, union types, and nullable types?How does PHP type hinting work, including scalar types, return types, union types, and nullable types?Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software