-
- $link = mysql_connect("mysql_host" , "mysql_user" , "mysql_password" )or die("接続できませんでした: " .mysql_error());
- mysql_query("set names utf8");
- mysql_select_db("my_database") または die("データベースを選択できませんでした");
- ?>
复制代码
php批量生成html
-
-
require_once(“conn.php”);
$query = "SELECT id,title,introduce FROM my_table";
- $result = mysql_query($query) または die("クエリが失敗しました : " .mysql_error());
/* HTML 生成結果 */
- while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
-
- $id=$row['id'];
- $title=$row['title'];
- $introduce =$row['紹介'];
- $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 " 生成成功".
- }
/* 释放资源 */
- mysql_free_result($result);
- mysql_close($link);
- ?>
-
复制代
template.html文件内容:
php批量生成txt
-
-
require_once(“conn.php”);
$query = "SELECT kid,title,introduce FROM pro_courses";
- $result = mysql_query($query) または die("クエリが失敗しました : " .mysql_error());
/* txt の生成 結果 */
- while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
-
- $id=$row['id'];
- $title=$row['title'];
- $introduce =$row['紹介'];
- $path="html/$id.txt";
- $handle=fopen($path,"w"); //書き込み方式で新しい経路を起動します
- fwrite($handle,strip_tags($introduce)); // ハンドル操作の内容写し生成されたtxtファイル
- fclose($handle);
- }
/* 释放资源 */
- mysql_free_result($result);
- mysql_close($link);
- ?>
-
复制代
|