php smarty 语法错误
我是 smarty 的新手!我有一个循环来打印表格!但它产生 synatc 错误,出了什么问题?
{foreach $messages as $message}
<tr style="{if !$message->read }font-weight:bold;{/if}">
<td style="width: 3%; background: #EFEFEF" align="center"><input type="checkbox" name="selected[]" class="selected" value="{$account->username}{chr(22)}{$account->email}" /></td>
<td style="width: 3%;" align="center" >{$smarty.get.offset+($message@index+1)}</td>
<td style="width: 20%;" >{$message->from}{if $message->firstname || $message->lastname}<span style="font-size:10px;font-weight:normal;color:#666"> <br />{$message->firstname} {$message->lastname}</span>{/if}</td>
<td style="width: 46%;" ><a href="{$smarty.server.PHP_SELF}?mod=message&caption=get&id={$message->id}">{$message->subject}</a></td>
<td style="width: 30%;" >{lib_abstracts::convertTime($message->cDate, '', TRUE, TRUE)}</td>
</tr>
{/foreach}
I'm new in smarty!I have a loop to print a table!but it's make synatc error what's wrong ?
{foreach $messages as $message}
<tr style="{if !$message->read }font-weight:bold;{/if}">
<td style="width: 3%; background: #EFEFEF" align="center"><input type="checkbox" name="selected[]" class="selected" value="{$account->username}{chr(22)}{$account->email}" /></td>
<td style="width: 3%;" align="center" >{$smarty.get.offset+($message@index+1)}</td>
<td style="width: 20%;" >{$message->from}{if $message->firstname || $message->lastname}<span style="font-size:10px;font-weight:normal;color:#666"> <br />{$message->firstname} {$message->lastname}</span>{/if}</td>
<td style="width: 46%;" ><a href="{$smarty.server.PHP_SELF}?mod=message&caption=get&id={$message->id}">{$message->subject}</a></td>
<td style="width: 30%;" >{lib_abstracts::convertTime($message->cDate, '', TRUE, TRUE)}</td>
</tr>
{/foreach}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的
foreach
语法不正确。您正在使用 PHP 样式foreach
。 Smarty 的有点不同。 注意:您的语法对 Smarty 3 有效。如果您使用的是 Smarty 2.x,请使用:Smarty foreach 文档
Your
foreach
syntax is incorrect. You're using PHP styleforeach
. Smarty's is a bit different. Note: your syntax is valid for Smarty 3. If you're using Smarty 2.x, use:Smarty foreach docs
这里有空格
->read }
删除它就可以了You have white space in here
->read }
remove this and it'll be work