我正在使用此代码
<span class="tab-text-subheader"> <? echo ($rrow['tags']) ? $rrow['tags'] : "-"; ?> </span>
提取标签并列出它们,目前它显示如下
Tags: tag1,tag2,tag3,tag4
但我希望逗号后面有一个空格,例如
Tags: tag1, tag2, tag3, tag4
我尝试了几种不同的解决方案,但我不是代码专家。谢谢
P粉2778243782023-09-09 09:03:51
Just use string replace function and replace ,
with ,
(comma with space)
<span class="tab-text-subheader"><? echo ($rrow['tags']) ? str_replace(',', ' ', $rrow['tags']); : "-"; ?></span>
我希望这对你有用