1

我想制作一个生成 html 页面并创建文件来存储每个页面的 cms。

理想情况下,我需要这样的东西:

<?php
$file1 = get_produced_html_from('mainPage.php');
/* write the file to a directory*/


$file2 = get_produced_html_from('ProductsPage.php');
/* write the file to a directory*/
?>

有没有我错过的功能,而不是 require、include、require_once、include_onse 等?

澄清一下:我不需要 .php 文件中的 php 代码。我只需要 html 内容,这意味着应该首先执行 php 文件。

您是否认为解决方案类似于通过将http://domain.com/templates/mainPage.php作为 html 流读取来使用http://php.net/manual/en/function.file-get-contents.php ?

十分感谢。

4

2 回答 2

4

您需要从缓冲区捕获输出。

这是我为某人编写的一段代码,用于演示一个非常简单的视图渲染器类。

public function render($file) {
    $file = $this->viewPath = APP_ROOT . 'View' . DS . $file . '.php';
    if (is_file($file)) {
        ob_start();
        extract($this->_vars);
        include($file);
        $content = ob_get_contents();
        ob_end_clean();
    } else {
        throw new RuntimeException(sprintf('Cant find view file %s!', $file));
    }

    return $content;
}

它打开输出缓冲区(ob_start())执行 php 文件并设置变量,然后获取缓冲区(ob_get_contents () ),然后清理缓冲区以进行下一个操作(ob_end_clean())。您也可以使用ob_end_flush()直接清理和发送缓冲区。我不会那样做,而是对应用程序进行适当的关闭过程,并确保在将页面发送到客户端之前,一切都已完成并且正确无误地完成。

我想我很快就会在 Github 上提供整个代码。那我会更新答案。

于 2013-08-25T23:12:02.437 回答
1

您可以只使用 cURL 从 url 获取整个呈现的输出。

你可以像这样使用它:

// Initiate the curl session
$ch = curl_init();

// Set the URL
curl_setopt($ch, CURLOPT_URL, 'http://www.example.com/mypage.php');

// Allow the headers
curl_setopt($ch, CURLOPT_HEADER, true);

// Return the output instead of displaying it directly
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

// Execute the curl session
$output = curl_exec($ch);

// Close the curl session
curl_close($ch);
于 2013-08-25T23:18:16.047 回答