我想制作一个生成 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 ?
十分感谢。