Best way to download a file in PHP

后端 未结 3 2030
栀梦
栀梦 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 10:04

    You may use one code line to do this:

    copy(URL, destination);
    

    This function returns TRUE on success and FALSE on failure.

提交回复
热议问题