> 新聞資訊等大量內容靜態化可大大降低系統負載
## 當訪問新聞時進行生成靜態
```
$filePath='文件絕對地址,與偽靜態路徑一致';
if(!file_exists($filePath)){
//文件不存在 生成
$html = file_get_contents('文章地址');
file_put_contents($filePath, $html);
}
```
## 后臺批量生成
>[warning]大數據情況下容易卡死
```
foreach($ids as $id){
$filePath='文件絕對地址,與偽靜態路徑一致'.$id.'.html';
if(!file_exists($filePath)){
//文件不存在 生成
$html = file_get_contents('文章地址'.$id.'.html');
file_put_contents($filePath, $html);
}
}
```