时间:2021-07-01 10:21:17 帮助过:14人阅读
参见include_once的文档来理解_once的含义,并理解与没有_once时候有什么不同。
使用方法
define('__ROOT__',dirname(dirname(__FILE__)));
require_once(__ROOT__.'/config.php');
?>
方法二:
2例如:编辑
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
require_once('sys/config.php'); require_once('header.php'); ?>
系统平台一个简单的留言板系统平台 一个简单的留言板。
require_once('footer.php'); ?> |