我们有一个带有Smarty模板引擎的PHP脚本插件,
它可以在{plugin_name}的模板文件中使用,但这需要确保每个模板文件都有,问题是:
有没有办法在脚本加载时自动加载此插件?
脚本不是开源的,但Smarty及其文件(如Smarty.class.php等)未加密。
我需要做的就是在加载模板文件之前自动加载Smarty插件(与数据库的交互很少),只有Smarty文件可以实现/可以实现吗? (脚本本身是加密的,但Smarty_Compiler.class.php,Smarty.class.php,Config_File.class.php和其他聪明的核心功能都是开源的)
答案 0 :(得分:1)
这取决于您正在使用的Smarty版本。
使用Smarty 3,您可以:
$smarty = new Smarty();
$smarty->setTemplatesDir(....);
$smarty->addPluginsDir('/path/to/your/plugins');
... stuff.
$smarty->display('template.tpl');
另请参阅:https://www.smarty.net/docs/en/api.add.plugins.dir.tpl
使用Smarty2我认为你需要做更多这样的事情 -
https://www.smarty.net/docsv2/en/api.register.function.tpl
或者,使用正确的文件名和函数名将函数放入libs / plugins目录中......