当前位置:编程学习 > php >>

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);
?>

上一个:.php这个扩展名用什么软件打开
下一个:学java还是.net或者php好啊

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,