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 に答える