-1

所以我试图在一个文件中添加 2 个不同的(html-header.php 和 header.php)文件。我不了解 PHP,大多数搜索都会导致我不知道的高级代码。

这是我正在使用的代码:

<?php include 'header.php'; ?>

这包括我的一个头文件,我将如何添加另一个与头文件一起使用的文件。提前谢谢你们。

4

2 回答 2

2

包括它,就像你包括第一个一样。包含的文档

<?php
    include 'header.php';
    include 'html-header.php';
?>

Include 将只取文件中的任何内容并将其替换为该include 'file.php'行。因此,包含文件的顺序很重要。

于 2012-10-26T16:13:37.480 回答
0

只需多次使用 include 语句。

<?php
    include 'html-header.php';
    include 'header.php';
?>

或者,如果 html-header 总是与 header 一起使用,请在 html-header.php 的 header 中包含一个 include 行。

于 2012-10-26T16:15:16.413 回答