php 批量生成html,txt文件的实现代码
2015-01-24信息快讯网
本篇文章是对使用php批量生成html,txt文件的实现代码进行了详细的分析介绍,需要的朋友参考下
首先建立一个conn.php的文件用来链接数据库<?php $link = mysql_connect("mysql_host" , "mysql_user" , "mysql_password" )or die("Could not connect : " . mysql_error()); mysql_query("set names utf8"); mysql_select_db("my_database") or die("Could not select database"); ?>
php 批量生成html
<?php require_once(“conn.php”); $query = "SELECT id,title,introduce FROM my_table"; $result = mysql_query($query) or die("Query failed : " . mysql_error()); /* 生成 HTML 结果 */ while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) { $id=$row['id']; $title=$row['title']; $introduce=$row['introduce']; $path="html/$id.html"; $fp=fopen("template.html","r"); //只读打开模板 $str=fread($fp,filesize("template.html"));//读取模板中内容 $str=str_replace("{title}",$title,$str); $str=str_replace("{introduce}",$introduce,$str);//替换内容 fclose($fp); $handle=fopen($path,"w"); //写入方式打开新闻路径 fwrite($handle,strip_tags($introduce)); //把刚才替换的内容写进生成的HTML文件 fclose($handle); //echo "<a href=html/$id.html>生成成功</a>"."<br>"; } /* 释放资源 */ mysql_free_result($result); mysql_close($link); ?>
template.html文件内容:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>{title}</title> </head> <body> {introduce} </body> </html>
php 批量生成txt
<?php require_once(“conn.php”); $query = "SELECT kid,title,introduce FROM pro_courses"; $result = mysql_query($query) or die("Query failed : " . mysql_error()); /* 生成 txt 结果 */ while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) { $id=$row['id']; $title=$row['title']; $introduce=$row['introduce']; $path="html/$id.txt"; $handle=fopen($path,"w"); //写入方式打开新闻路径 fwrite($handle,strip_tags($introduce)); //把刚才替换的内容写进生成的txt文件 fclose($handle); } /* 释放资源 */ mysql_free_result($result); mysql_close($link); ?>
php 生成自动创建文件夹并上传文件的示例代码
PHP错误和异长常处理总结
php发送post请求函数分享
PHP empty函数报错解决办法
PHP APC缓存配置、使用详解
php中调用其他系统http接口的方法说明
将php数组输出html表格的方法
php检测iis环境是否支持htaccess的方法
PHP strip_tags()去除HTML、XML以及PHP的标签介绍
php 判断字符串中是否包含html标签
php中simplexml_load_string使用实例分享
php获取网页标题和内容函数(不包含html标签)
PHP 动态生成静态HTML页面示例代码
安装apache2.2.22配置php5.4(具体操作步骤)
php 去除html标记--strip_tags与htmlspecialchars的区别详解
解析php扩展php_curl.dll不加载的解决方法
php ci框架验证码实例分析
解析php file_exists无效的解决办法
php读取文件内容的几种方法详解
探讨:array2xml和xml2array以及xml与array的互相转化
解析关于java,php以及html的所有文件编码与乱码的处理方法汇总
php 备份数据库代码(生成word,excel,json,xml,sql)
解析PHP生成静态html文件的三种方法
解析mysql left( right ) join使用on与where筛选的差异
解析htaccess伪静态的规则
php htmlspecialchars()与shtmlspecialchars()函数的深入分析
基于curl数据采集之单页面并行采集函数get_htmls的使用