我從php中獲取file_get_contents()
函數的文件內容,我想將該文件存儲在特定文件夾中。我會怎麼做?php:獲取文件內容和存儲在特定文件夾中的文件
$image = file_get_contents('http://www.affiliatewindow.com/logos/1961/logo.gif');
我想將此圖像保存在特定文件夾中。
有什麼想法嗎?
我從php中獲取file_get_contents()
函數的文件內容,我想將該文件存儲在特定文件夾中。我會怎麼做?php:獲取文件內容和存儲在特定文件夾中的文件
$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);
除了提到的file_put_contents,你可以看看fwrite
function的例子。