smarty/codeigniter 中的评估
我正在尝试将 CodeIgniter 函数之一与 smarty 一起使用,其变量名称为 Dynamic。
通常该函数是这样调用的:
{set_value(aaa, $f_aaa} <br>
但在我的代码中aaa被动态值替换
第一部分很简单:
{set_value($row->Field, $f_aaa} <br>
但我不知道如何在这种情况下在smarty中使用eval。
它应该用循环调用函数(例如使用以下输入/变量)
{set_value(name, $f_name}
{set_value(address, $f_address}
编辑:我忘了说PHP的本机eval
函数在smarty中不起作用..它显示以下内容错误 :
unknown function "eval"'
I am trying to use one of CodeIgniter functions with smarty which the variable name is Dynamic.
normally the function is called like this :
{set_value(aaa, $f_aaa} <br>
but in my code aaa is replaced with a dynamic value
first part is easy :
{set_value($row->Field, $f_aaa} <br>
but I don't know how to use eval in smarty for this situation .
it should call the function with a loop (ex with following input/variable)
{set_value(name, $f_name}
{set_value(address, $f_address}
edit: I forgot to say PHP's native eval
function is not working inside smarty .. it's showing following error :
unknown function "eval"'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
eval
不是一个函数 - 它是语言构造,不能像 smarty 调用普通函数的方式来调用它。eval
is not a function - it is language construct and it cannot be called the way smarty is calling normal functions.如果你想在 Smarty 中使用 CI 助手,请查看这个 Smarty 插件
https://github .com/fadillzzz/Smarty-CI-Helper/
它使您能够使用 Smarty 语法从 Smarty 模板调用任何 CI 帮助器函数
If you want to use CI helper inside Smarty, take a look at this Smarty plugin
https://github.com/fadillzzz/Smarty-CI-Helper/
It'll give you the ability to call any CI helper functions from the Smarty templates using the Smarty syntax
您是否使用过 {php} 标签。
have you used {php} tag.