PHP自动下载文件

时间:2012-04-14 06:01:25

标签: php download

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

修改

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

2 个答案:

答案 0 :(得分: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>";
    ?>

答案 1 :(得分:1)