如果我有一段代码从 txt 文件中读取一大段 HTML,然后将该 html 回显到页面上,我该如何完成相同的任务,但是当 txt 文件中有 PHP 时呢?
前任:
这是正在读取的文件:
<?php
$filecontent = // read some other file
echo($filecontent);
?>
这是正在读取文件的页面:
<?php
$code1 = //reading the above file
?>
<html>
<?php echo($code1); ?>
</html>