php保存远程图片函数怎么写?
如题.具体点并加注释,谢谢.接触PHP时间不长,想看的更明白些.
答案:$data=file_get_conents($url);
writetofile($address,$data);
function writetofile()
...
如果是linux系统 可以使用php运行系统命令wget!写个实例给你:
<?
$s=file_get_contents('http://community.csdn.net/images/CSDN_logo.GIF');
$fh=fopen('logo.gif','w');
fwrite($fh,$s);
fclose($fh);
?>