首页 > 开发 > PHP > 正文

PHP实现发表文章时自动保存图片

2024-05-04 23:04:22
字体:
来源:转载
供稿:网友
$img_array = array();
$content1 = stripslashes($content1);
if (get_magic_quotes_gpc()) $content1 = stripslashes($content1);
//echo $content1;
preg_match_all("/(src│src)="(http://(.+).(gif│jpg│jpeg│bmp│png))/isu",$content1,$img_array);
$img_array = array_unique(dhtmlspecialchars($img_array[2]));
set_time_limit(0);
foreach ($img_array as $key => $value) {
$get_file = file_get_contents($value);
$filetime = time();
$filepath = "../uploadfile/".date("y",$filetime)."/".date("m",$filetime)."/";
!is_dir($filepath) ? mkdirs($filepath) : null;
$filename = date("ymdhis",$filetime).random(1).'.'.substr($value,-3,3);
$fp = @fopen($filepath.$filename,"w");
@fwrite($fp,$get_file);
fclose($fp);
$content1 = preg_replace("/".addcslashes($value,"/")."/isu", "/uploadfile/".date("y",$filetime)."/".date("m",$filetime)."/".$filename, $content1);

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表