您现在的位置是:首页 > 教程 > 帝国CMS教程帝国CMS教程

帝国CMS二次开发远程保存图片函数的代码

冰夏2023-05-08 23:41:32帝国CMS教程已有人查阅

导读帝国CMS远程保存图片函数<?php
function get_file($url,$folder,$pic_name){
set_time_limit(24*60*60); //限制最大的执行时间
$destination_folder=$folder?$fol

帝国CMS远程保存图片函数

<?php 
function get_file($url,$folder,$pic_name){        
set_time_limit(24*60*60); //限制最大的执行时间
$destination_folder=$folder?$folder.'/':''; //文件下载保存目录
$newfname=$destination_folder.$pic_name;//文件PATH
$file=fopen($url,'rb');

if($file){                        
$newf=fopen($newfname,'wb');
if($newf){                                
while(!feof($file)){                                        
fwrite($newf,fread($file,1024*8),1024*8);
}
}
if($file){                                
fclose($file);
}
if($newf){                                
fclose($newf);
}
}                
}        
get_file(" /static/upload/image/20230505/rtvky2guney.gif","file","baidu.jpg");
?>

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

相关标签