我想在網站中加個導出靜態網頁的功能,有什麼好的方案可以快速匯出呢?
我想在網站中加個導出靜態網頁的功能,有什麼好的方案可以快速匯出呢?
不是有file_put_content()的函數嗎?
需要用到ob_start() 系列方法,
用curl file_get_contentS 等模擬請求,都會非常低效,各種框架都用ob實作
手機端打碼字難,不詳說了
可以看一下php中的Output Control函數
何不用wget直接抓mirror出來然後打個tgz包下載
`ob_start();
//模板處理
//echo 模板內容
$content = ob_get_contents();
ob_end_clean();
file_put_contents('./demo.html', $content);`
也可以用smart模板實現,如下圖:
<code><?php require('smarty/Smarty.class.php'); $t = new Smarty; $t->assign("title","Hello World!"); $content = $t->fetch("templates/index.htm"); //这里的 fetch() 就是获取输出内容的函数,现在$content变量里面,就是要显示的内容了 $fp = fopen("archives/2005/05/19/0001.html", "w"); fwrite($fp, $content); fclose($fp); ?></code>
使用也很簡單。
<code><?php /* 在这里数据库增删改查之前对缓存进行过期判断和应用 */ $app['data'] = db_crud(); $view = render('index.php'); function render($template) { global $app; ob_end_clean(); ob_start(); require APP_ROOT.'/view/'.$template; //模板里会用到数据$app['data'] $html = ob_get_contents(); ob_end_clean(); ob_start(); /* 在这里把 ob_get_contents 拿到的字符串 file_put_contents 写入文件系统 */ return $html; }</code>