gpt4 book ai didi

php - Smarty 删除 foreach 循环中的尾随逗号

转载 作者:行者123 更新时间:2023-12-04 14:18:53 25 4
gpt4 key购买 nike

我在 smarty 中有以下循环:

{foreach from=$method.params key=name item=type}
<i style="font-weight: normal;">{$type}</i> {$name},
{/foreach}

删除尾随逗号的最佳方法是什么?

最佳答案

比起 Smarty,我更喜欢 Twig,所以我从文档开始工作,但这是我的想法:

{assign var="comma" value=""}
{foreach from=$method.params key=name item=type}
{$comma}<i style="font-weight: normal;">{$type}</i> {$name}
{assign var="comma" value=", "}
{/foreach}

关于php - Smarty 删除 foreach 循环中的尾随逗号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26811652/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com