如何使用php从URL保存文件

时间:2013-09-14 23:25:12

标签: php

如何使用变量$url="http://videos.com/example.mp4"将“example.mp4”从$id=56保存为“56.mp4”到/videos

1 个答案:

答案 0 :(得分:1)

mkdir('/videos');

file_put_contents("/videos/" . ((string) $id) . ".mp4", file_get_contents($url));

文档:

http://php.net/manual/en/function.file-get-contents.php

http://php.net/manual/en/function.file-put-contents.php