0

是否可以让 PHP 从远程服务器下载文件并将其保存在本地文件夹中?

编辑

我不知道这是一个重复的问题。在发布之前,我进行了搜索,但正在搜索“php 自动下载文件”,并且正在获得有关如何强制浏览器下载文件而不是打开文件的结果。

4

2 回答 2

2
        <?php
    // set url "http://
           curl_setopt($ch, CURLOPT_URL, "<your url>"); 

          //return the transfer as a string 
         curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 

         // $output contains the output string 
         $output = curl_exec($ch); 

         // close curl resource to free up system resources 
          curl_close($ch); 

    file_put_contents($output,"<file>";
    ?>
于 2012-04-14T06:05:09.760 回答
1

使用file_get_contents.

于 2012-04-14T06:02:49.213 回答