smarty/codeigniter 中的评估

发布于 2024-12-03 22:08:39 字数 560 浏览 4 评论 0原文

我正在尝试将 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 技术交流群。

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

发布评论

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

评论(3

深居我梦 2024-12-10 22:08:39

eval 不是一个函数 - 它是语言构造,不能像 smarty 调用普通函数的方式来调用它。

eval is not a function - it is language construct and it cannot be called the way smarty is calling normal functions.

栖竹 2024-12-10 22:08:39

如果你想在 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

念﹏祤嫣 2024-12-10 22:08:39

您是否使用过 {php} 标签。

have you used {php} tag.

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