从动态Php页面生成HTML静态页面

时间:2011-04-17 20:56:35

标签: php html

我正在寻找一个脚本来在运行时从动态内容生成静态HTML页面。

我基本上想要做的是保存那些用于离线浏览的html生成页面的缓存。

有人可以指出我正确的方向吗?

由于

3 个答案:

答案 0 :(得分:4)

如果要手动执行此操作,可以使用输出缓冲。例如:

档案static.php

Hello, <a href="profile.php"><?php echo htmlspecialchars($username); ?></a>!

档案functions.php

/**
 * Renders cached page.
 *
 * @param string $template The dynamic page to cache.
 * @param integer $uid The user ID (security precaution to prevent collisions).
 * @param array $vars Set of variables passed to dynamic page.
 */
function cache_page($template, $uid, $vars)
{
    $cache = 'cache/' . $uid . '-' . md5(@json_encode($vars)) . '.cache';

    if (!file_exists($cache)) { // <- also maybe check creation time?
        // set up template variables
        extract($template_vars, EXTR_SKIP);

        // start output buffering and render page
        ob_start();
        include $template;

        // end output buffering and save data to cache file
        file_put_contents($cache, ob_get_clean());
    }

    readfile($cache);
}

档案index.php

require_once 'functions.php';

cache_page(
    'static.php',
    getUser()->id,
    ['username' => getUser()->username]
);

答案 1 :(得分:3)

答案 2 :(得分:0)

使用fopen并保存页面以进行离线阅读,但听起来很简单