PHP - 包含文件并在其中执行代码

时间:2016-08-30 07:52:46

标签: php php-include

我有这段代码:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title><?php echo $title; ?></title>
</head>
<body>
    <?php foreach ($posts as $post) { ?>
        <div class="post">
            <h3 class="title"><?php $post["title"]; ?></h3>
            <p class="text"><?php $post["text"]; ?></p>
        </div>
    <?php } ?>
</body>
</html>

我需要将它包含在其他文件中并执行其中的所有PHP代码。我该怎么办?

2 个答案:

答案 0 :(得分:4)

包括绝对路径:

<?php include($_SERVER["DOCUMENT_ROOT"].'/yourdirectory/yourfile.php'); ?>

答案 1 :(得分:0)

使用include()函数。

include("the file.php")