0

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

4

1 回答 1

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

于 2013-09-14T23:28:59.897 回答