Php/keyword require
来自菜鸟教程
PHP需要关键字
例
Use
require
在页面上添加页脚:
<!DOCTYPE html> <html> <body> <h1>Welcome to my home page!</h1> <p>Some text.</p> <p>Some more text.</p> <?php require 'footer.php';?> </body> </html>
定义和用法
The
require
关键字用于嵌入另一个文件中的PHP代码。如果找不到该文件,则会引发致命错误,并且程序将停止。
相关页面
The
include
关键词
The
include_once
关键词
The
require_once
关键词
阅读有关在我们的文件中包含文件的更多信息 PHP包含文件教程
.