0

unrecognized tag: $ncache['tab']="gallery_cat" (Smarty_Compiler.class.php, line 455)

i got this error, when i type the following code

{$ncache[tab]="gallery_cat"}
{$ncache.tab="gallery_cat"}

anyway to assign an array in smarty?

4

1 回答 1

0

您可以使用 php 标签在 smarty 中分配数组,如下所示:

{php}
$this->assign("array", array('1','2','3'));
{/php}

或者,如果您使用的是版本 3,您也可以直接从 smarty 使用它

{$array = ['1','2','3']}
于 2012-06-01T11:48:08.050 回答