Download File to server from URL

后端 未结 12 1216
旧巷少年郎
旧巷少年郎 2020-11-22 04:05

Well, this one seems quite simple, and it is. All you have to do to download a file to your server is:

file_put_contents(\"Tmpfile.zip\", file_get_contents(\         


        
12条回答
  •  逝去的感伤
    2020-11-22 04:29

    set_time_limit(0); 
    $file = file_get_contents('path of your file');
    file_put_contents('file.ext', $file);
    

提交回复
热议问题