PHP发表文章时自动保存图片实例代码_PHP教程
教程Tag:暂无Tag,欢迎添加,赚取U币!
推荐:php+mysql实现无限级分类无限级分类,主要是通过储存上级分类的id以及分类路径来实现。由于数据的结构简单,所以要将分类的关系由树状显示,我只能想到用递归的方式给于实现,下面是分类数据表结构和自己写的一个树状显示函数,有什么不妥的地方希望大家能指出。 表结构:id字段为分
- 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_array);
- img_array = array_unique(dhtmlspecialchars(img_array[2]));
- set_time_limit(0);
- foreach (img_array as key => value) {
- get_file = file_get_contents(value);
- filetime = time();
- filepath = "../uploadfile/".date("Y",filetime)."/".date("m",filetime)."/";
- !is_dir(filepath) ? mkdirs(filepath) : null;
- filename = date("YmdHis",filetime).random(1).'.'.substr(value,-3,3);
- fp = @fopen(filepath.filename,"w");
- @fwrite(fp,get_file);
- fclose(fp);
- 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教程:
- 相关链接:
- 教程说明:
PHP教程-PHP发表文章时自动保存图片实例代码。