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

前端之家收集整理的这篇文章主要介绍了PHP实现发表文章时自动保存图片前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  1. <?PHP 
  2.  
  3. $img_array = array(); 
  4.  
  5. $content1 = stripslashes($content1); 
  6.  
  7. if (get_magic_quotes_gpc()) $content1 = stripslashes($content1); 
  8.  
  9. //echo $content1; 
  10.  
  11. preg_match_all("/(src│SRC)="(http://(. ).(gif│jpg│jpeg│bmp│png))/isU",$content1,$img_array); 
  12.  
  13. $img_array = array_unique(dhtmlspecialchars($img_array[2])); 
  14.  
  15. set_time_limit(0); 
  16.  
  17. foreach ($img_array as $key => $value) { 
  18.  
  19. $get_file = file_get_contents($value); 
  20.  
  21. $filetime = time(); 
  22.  
  23. $filepath = "../uploadfile/".date("Y",$filetime)."/".date("m",$filetime)."/"
  24.  
  25. !is_dir($filepath) ? mkdirs($filepath) : null; 
  26.  
  27. $filename = date("YmdHis",$filetime).random(1).'.'.substr($value,-3,3); 
  28.  
  29. $fp = @fopen($filepath.$filename,"w"); 
  30.  
  31. @fwrite($fp,$get_file); 
  32.  
  33. fclose($fp); 
  34.  
  35. $content1 = preg_replace("/".addcslashes($value,"/")."/isU""/uploadfile/".date("Y",$filetime)."/".$filename$content1); 
  36.  
  37. ?> 

猜你在找的PHP相关文章