Php/keyword include
来自菜鸟教程
PHP包含关键字
例
Use
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>
定义和用法
The
include
关键字用于嵌入另一个文件中的PHP代码。如果找不到该文件,则会显示警告,并且程序将继续运行。
相关页面
The
include_once
关键词
The
require
关键词
The
require_once
关键词
阅读有关在我们的文件中包含文件的更多信息 PHP包含文件教程
.