最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > 建站教程 > php教程 >

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

时间:2014-06-09 16:39来源: 作者: 点击:
?php $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_arr
  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. ?> 
(责任编辑:admin)
------分隔线----------------------------
栏目列表
推荐内容