新建两个文件template.html、index.php
template.html
<html>
<head>
<title><{title}></title>
</head>
<body>
<center><{content}></center>
</body>
</html>
把关于这些有关的代码提交到index.php
index.php
<?php
$template = file_get_contents('./template.html');
$html = 'out.html';
$title=1111;
$section=222;
$output = str_replace('<{title}>', $title, $template);
$output = str_replace('<{content}>', $section, $output);
file_put_contents($html, $output);
?>
ok.