用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > php教程

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

时间:2015-01-23  来源:西部数据  作者:西部数据
  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. ?> 
来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
栏目更新
栏目热门