我正在使用此程式碼
<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>
我希望這對你有用