PHP生成靜態html

2021-10-02 17:45:15 字數 707 閱讀 2628

一: 建立muban.html檔案,新增如下**:

內容: 

二: 建立php檔案,新增如下**:

<?php 

header("content-type:text/html;charset=utf-8");

//將資料存入二維陣列

$con=array(

array('文章標題1','文章內容1'),

array('文章標題2','文章內容2'),

array('文章標題3','文章內容3')

);foreach($con as $id=>$val)",$title,$str);

$str=str_replace("",$content,$str);

fclose($fp);

//新建空白檔案,將$str寫入

$handle=fopen($path,"w");

fwrite($handle,$str);

fclose($handle);

echo "生成".$path."";}

?>

三:執行第二步的php檔案,效果如下:

成功,在當前資料夾下檢視已生成的檔案即可.

php生成靜態html頁面

ob start 是開啟緩衝區的,就是要把您需要生成的靜態檔案的內容快取在這裡 ob get contents 是讀出緩衝區裡的內容,下面有 為例 ob end clean 這個比較重要,只有使用了這個函式後,緩衝區裡的內容才會讀 ob start require index.php 模板頁面 te...

PHP 批量生成靜態html

本示例圍繞 cms 系統的靜態頁面方案出發,展示批量生成靜態 html 功能。注 本文程式只能在 windows 的 dos 或 linux 下執行 php 命令來執行。本示例主要有4個檔案 config.inc.php 配置檔案 db.class.php 資料庫 pdo 類 model.class...

PHP 批量生成靜態html

本示例主要有4個檔案 config.inc.php 配置檔案 db.class.php 資料庫 pdo 類 model.class.php pdo資料庫操作類 index.php 執行檔案 header content type text html charset utf 8 date defaul...