PHP发表文章时自动保存图片实例代码_PHP教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!

推荐:php+mysql实现无限级分类
无限级分类,主要是通过储存上级分类的id以及分类路径来实现。由于数据的结构简单,所以要将分类的关系由树状显示,我只能想到用递归的方式给于实现,下面是分类数据表结构和自己写的一个树状显示函数,有什么不妥的地方希望大家能指出。 表结构:id字段为分

  1. img_array = array(); 
  2. content1 = stripslashes(content1); 
  3. if (get_magic_quotes_gpc()) content1 = stripslashes(content1); 
  4. //echo content1; 
  5. preg_match_all("/(src│SRC)="(http://(.+).(gif│jpg│jpeg│bmp│png))/isU",content1,img_array); 
  6. img_array = array_unique(dhtmlspecialchars(img_array[2])); 
  7. set_time_limit(0); 
  8. foreach (img_array as key => value) { 
  9. get_file = file_get_contents(value); 
  10. filetime = time(); 
  11. filepath = "../uploadfile/".date("Y",filetime)."/".date("m",filetime)."/"
  12. !is_dir(filepath) ? mkdirs(filepath) : null; 
  13. filename = date("YmdHis",filetime).random(1).'.'.substr(value,-3,3); 
  14. fp = @fopen(filepath.filename,"w"); 
  15. @fwrite(fp,get_file); 
  16. fclose(fp); 
  17. content1 = preg_replace("/".addcslashes(value,"/")."/isU""/uploadfile/".date("Y",filetime)."/".date("m",filetime)."/".filename, content1); 

分享:PHP批量生成随机用户名
生成6 ~ 16位的用户名若干个,主要是文本操作,同事前提是要有一个字符串包。主要包含三个程序。 程序一:负责从字典中随机提取数据,写入一个新文件。(1.php) ?php /* 从字典文件中提取随机值 */ file1 = ./Words.dic; file2 = ./common_pass_mini.dic

来源:模板无忧//所属分类:PHP教程/更新时间:2012-06-17
相关PHP教程