如何包含一个文件,但在包含和渲染后“忘记”它的所有内容;包含它,可以这么说。
回到过去,我想我只会使用框架,但现在时代变了。我想 iframe 仍然是公平的游戏....但是还有其他方法吗?
ps我无法编辑包含的文件:)。
索引.php
<?php
echo '<p>This is some left-aligned text</p>';
include 'include.html';
echo '<p>This is some more left-aligned text</p>';
?>
包含.html
<html>
<head>
<style>
body{
text-align:center;
}
</style>
</head>
<body>
<p>This is some centered text</p>
</body>
</html>
输出
This is some left-aligned text
This is some centered text
This is some more left-aligned text
期望的输出
This is some left-aligned text
This is some centered text
This is some more left-aligned text
'终极'目标 只是为了提供更多信息,我有一个 epub 文件。我加载 container.xml 来确定根文件,它是一个 .opf 文件,它告诉我 spint,其中包含很多 .html 文件......
然后我将所有这些 html 文件包含到页面中,以便可以在一个连续流中读取 epub。
epub文件不能编辑?除非我可以在不永久修改 epub 文件的情况下做到这一点。