当我的用户点击“下载应用”时,zip文件会下载到他/她的电脑上。 我想要它,以便当我的用户点击“下载应用程序”时,zip文件保存到我的服务器(linux)。 enter link description here
答案 0 :(得分:0)
有三件事
据我所知,你想要第一个,所以你可以用file_get_contents来获取文件。您也可以使用curl,以下是file_get_contents();
的示例$file = file_get_contents('url_provided_by_the_user');
$destinationPath = public_path() . '/location/to/save/'.$filename . '.extension';
file_put_contents($destinationPath, $file);
}
如果我有任何机会混淆了解你的问题,请在下面评论,我会尽力纠正事情