我的聪明人有未知标签,但它是合法标签

发布于 2024-12-17 10:13:11 字数 366 浏览 1 评论 0原文

目前我改变了 smarty 2 ->版本 3

但在我更改后出现了如下问题。

SmartyCompilerException: Syntax Error in template 
"/home/test/engine/mobile9/template/t_footer.tpl" on line 28 
"{php}" unknown tag "php" in /home/test/engine/modules/smarty/sysplugins/smarty_internal_templatecompilerbase.php on line 617

之后我检查了 smarty 3 文档。它显示 {php} 是有效的运算符。

currently i change smarty 2 -> version 3

but after i change got problem as below.

SmartyCompilerException: Syntax Error in template 
"/home/test/engine/mobile9/template/t_footer.tpl" on line 28 
"{php}" unknown tag "php" in /home/test/engine/modules/smarty/sysplugins/smarty_internal_templatecompilerbase.php on line 617

after that i check smarty 3 documentations. it shown {php} is valid operator.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最舍不得你 2024-12-24 10:13:11

请在此处查看文档

重要通知

Smarty 已弃用

{php} 标签,因此不应使用。放
您的 PHP 逻辑改为 PHP 脚本或插件函数。注意

从 Smarty 3.1 开始,{php} 标签仅可从 SmartyBC 获得。

如果您使用的是 Smarty 3.0x,它应该可以工作。如果您使用的是 Smarty 3.1,则必须安装 SmartyBC 类(向后兼容性包装器)用于使用 {php}-标签。

但如果可能的话,请尝试遵循 Smarty 的建议:将 PHP 逻辑放入 PHP 脚本中,而不是放入 Smarty 模板中。

Check the documentation here:

IMPORTANT NOTICE

{php} tags are deprecated from Smarty, and should not be used. Put
your PHP logic in PHP scripts or plugin functions instead. Note

As of Smarty 3.1 the {php} tags are only available from SmartyBC.

If you're using Smarty 3.0x, it should work. If you're using Smarty 3.1, you have to install the SmartyBC class (Backwards Compatibility Wrapper) for the use of the {php}-Tag.

But where possible try to follow Smartys advice: Put PHP logic in PHP scripts, and not into the Smarty templates.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文