|
楼主 |
发表于 2012-10-9 14:25:23
|
显示全部楼层
解决了,可以的哈
$this->load->helper('file');
$data = file_get_contents("http://tp2.sinaimg.cn/2070296533/180/5640410092/1");
if ( ! write_file('images/people/weibo2.png', $data))
{
echo 'Unable to write the file';
}
else
{
echo 'File written!';
} |
|