How to download an mp3 file from remote url?

后端 未结 3 1278
夕颜
夕颜 2021-01-24 11:10

I am redirecting my website to a url where only an mp3 file is streaming and I want that file to be downloaded to local computer. how can i do that?

I have already searc

3条回答
  •  离开以前
    2021-01-24 11:43

    curl only works for small files.

    For larger files you can download mp3, mp4, zip by doing the following:

    file_put_contents(dirname(__FILE__) . '/recordings/audio.mp3', fopen('http://url-to-file.com/audio.mp3', 'r'))
    

提交回复
热议问题