php :获取文件内容并将文件存储在特定文件夹中
我从php中的函数中获取文件内容,我想将该文件存储在特定文件夹中。我该怎么做?file_get_contents()
$image = file_get_contents('http://www.affiliatewindow.com/logos/1961/logo.gif');
我想将此图像保存在特定文件夹中。
对此有什么想法吗?
我从php中的函数中获取文件内容,我想将该文件存储在特定文件夹中。我该怎么做?file_get_contents()
$image = file_get_contents('http://www.affiliatewindow.com/logos/1961/logo.gif');
我想将此图像保存在特定文件夹中。
对此有什么想法吗?
$image = file_get_contents('http://www.affiliatewindow.com/logos/1961/logo.gif');
file_put_contents('./myDir/myFile.gif', $image);
如果您使用的是 php 5,则可以使用 :file_put_contents
file_put_contents('/path/to/file.dat', $data);