Smarty - 变量加法
我想在 smarty 中为变量添加一个常量值。一样:
{assign var='c' value='0'}
$c=$c+1
I want to add a constant value to a variable in smarty. just like:
{assign var='c' value='0'}
$c=$c+1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个:
简短的形式也应该有效,但你说它不行。
但这不起作用,因为您使用的是 Smarty 2,对吗?因为在 Smarty 3 中它应该可以工作。
Try this:
The short form should work too, but you say it doesn't.
But this doesn't work because you're using Smarty 2, right? Because in Smarty 3 it should work.
尝试:
但通常模板框架的意义是遵循mvc模式。因此所有逻辑都在控制器中完成。或者对于你来说是某种 php 脚本。视图不应该包含太多逻辑(逻辑越少,视图代码越好)。因此任何类型的计算都不应该在视图中。然而,在 mvc 中,您将拥有某种逻辑,例如迭代或链接生成(通过例如 smarty 插件)。
Try:
But usually the sense of template frameworks is to follow the mvc pattern. So all the logic is done in a controller. Or in the case of you some sort of php script. The view should not hold much logic(less logic better view code). So any sort of calculations should not be in a view. In mvc you will have however some sort of logic like iterations or link generation(through e.g. smarty plugins).
您可以将表达式与
{assign}
< /a> 模板函数。或者用它的简短形式,
You can use expressions with the
{assign}
template function.Or in its short form,