当前位置:首页 > PHP教程 > php应用 > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2013-12-10 10:20:57 浏览: 评论:0 
  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)."/".date("m",$filetime)."/".$filename$content1); 
  36.  
  37. ?> 

Tags: 实现 发表文章 自动保存

分享到: