Home > Backend Development > PHP Tutorial > 这个东西在smarty的模板中应该如何写

这个东西在smarty的模板中应该如何写

WBOY
Release: 2016-06-13 10:36:17
Original
894 people have browsed it

这个东西在smarty的模板中应该怎么写?
{$brand_$count++},这个是我在模板里面写的东西,最后正确的循环展现形式应该是{$brand_1},{$brand_2},{$brand_3},{$brand_4}...
{$brand_1},{$brand_2},{$brand_3},{$brand_4}这些变量是我在其他地方定义好的。所以理想状态下最后就可以被执行了。

但实际上解析的时候应该是先解析的是$brand_的这个变量,所以$count++还没被执行解析就直接报错了。怎样才能先解析$count++,然后将其$count++的结果进行组合后再去执行呢?

说的有点乱,不知道大家能不能明白??

------解决方案--------------------
smarty不可以这样,也不知道如何实现,在php端实现好了再说吧

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template