display("handl"/> display("handl">

Maison >développement back-end >tutoriel php > smarty施用section或者foreach循环,页面不显示

smarty施用section或者foreach循环,页面不显示

WBOY
WBOYoriginal
2016-06-13 12:43:00918parcourir

smarty使用section或者foreach循环,页面不显示
我发现只要在html页面使用了数组循环,section,或者foreach,页面就是一片空白,数组穿过来也是有值的,如果传过来的是变量,就没问题。
比如:
$smarty->assign("title", $title);
$smarty->display("handle.html");
然后在handle.html页面使用 {/$title}就可以取出$title的值

但是如果下面这样:
$smarty->assign("array", $array);
$smarty->display("handle.html");
然后在handle.html页面使用:
{section name=item loop=$array}
    {/$array[item]}
{/section}
即如果传的是数组,页面就是一片空白,换乘foreach也是一样,
不知道我说明白了没有,望高手赐教!

循环 section foreach
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Article précédent: 求大神一个简略的正则去除 Article suivant: PHP Redis 装配