Best way to download a file in PHP

后端 未结 3 2002
栀梦
栀梦 2020-12-10 09:26

Which would be the best way to download a file from another domain in PHP? i.e. A zip file.

3条回答
  •  时光说笑
    2020-12-10 09:53

    The easiest one is file_get_contents(), a more advanced way would be with cURL for example. You can store the data to your harddrive with file_put_contents().

提交回复
热议问题