标签: php
如何使用变量$url="http://videos.com/example.mp4"将“example.mp4”从$id=56保存为“56.mp4”到/videos
$url="http://videos.com/example.mp4"
$id=56
/videos
答案 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