我仍在学习PHP,目前正在学习最佳实践,下面是我一直需要的模板文件,但现在我希望它位于目录中,而不是使用模板/templates.php我想从我的配置文件中定义一次,然后在下面的索引文件中调用它。如果有人能向我指出正确的方向,将不胜感激,谢谢
编辑:我想使用define函数,谢谢。
index.php
require_once 'config.php';
require_once '$TEMPLATES/template.php';
$tpl = new Template\template('main.tpl');
$tpl->set('city', 'London');
$tpl->render();
config.php
*mysql_details*
$TEMPLATES = 'templates/';