PHP include 关键字
实例
使用 include
为页面添加页脚:
<!DOCTYPE html>
<html>
<body>
<h1>Welcome to my home page!</h1>
<p>Some text.</p>
<p>Some more text.</p>
<?php include 'footer.php';?>
</body>
</html>
亲自试一试 »
<html>
<body>
<h1>Welcome to my home page!</h1>
<p>Some text.</p>
<p>Some more text.</p>
<?php include 'footer.php';?>
</body>
</html>
定义和用法
include
关键字用于从另一个文件嵌入 PHP 代码。 如果未找到该文件,则会显示警告并且程序会继续运行。
相关页面
include_once
关键字
require
关键字
require_once
关键字
在我们的 PHP 包含文件教程中了解有关包含文件的更多信息。