是否可以让 PHP 从远程服务器下载文件并将其保存在本地文件夹中?
编辑
我不知道这是一个重复的问题。在发布之前,我进行了搜索,但正在搜索“php 自动下载文件”,并且正在获得有关如何强制浏览器下载文件而不是打开文件的结果。
<?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>";
?>