gpt4 book ai didi

php - 如何重用html作为页脚

转载 作者:行者123 更新时间:2023-12-05 01:02:51 26 4
gpt4 key购买 nike

我看到了多个关于创建 php 文件以重用页眉/页脚的答案,但没有足够具体的答案。我似乎无法让它工作。

php 文件究竟是什么样的以及我的 html 文件究竟是什么样的(给定当前的代码,如下所示)?我是否必须将所有 html 文件转换为 php 文件才能使用 php 包含行?

<div id="footer2-wrap">  
<div class="container">
<table id="header">
<tr>
<td class="phone-number"><span class='wsite-text wsite-phone'>Copyright 2015 | xxx Corporation</span></td>
</tr>

</table>
</div>

最佳答案

使用您的页脚数据创建一个新文件。我们给它起个名字:footer.php:

<div id="footer2-wrap">  
<div class="container">copyright etc...</div>
<div>

然后在您的主模板(或 index.php 文件)中,包含页脚文件:

include_once('footer.php');

关于php - 如何重用html作为页脚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27573791/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com