这个问题让我很困惑。您可以从 .php 文件中的任何位置打开 php 文件吗?前任:
// index.php
<?php
include('functions.php');
// ...
?>
<body>
// ...
</body>
<footer>
// This is what I'm trying to do
<?php include_once('blog.php'); ?>
</footer>
这个问题让我很困惑。您可以从 .php 文件中的任何位置打开 php 文件吗?前任:
// index.php
<?php
include('functions.php');
// ...
?>
<body>
// ...
</body>
<footer>
// This is what I'm trying to do
<?php include_once('blog.php'); ?>
</footer>