如何更改列表的分隔符?
$variable = 'one, two, three';
如何用
替换单词之间的逗号?
$variable
应该变成:
one<br>
two<br>
three
$variable = 'one, two, three';
How can I replace the commas between words with <br>
?
$variable
should become:
one<br>
two<br>
three
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
使用
str_replace
:或者,如果您想对中间的元素执行其他操作,
explode()
和implode()
:Either use
str_replace
:or, if you want to do other things with the elements in between,
explode()
andimplode()
:应该做到这一点。
Should do the trick.
然后你可以
echo $variable
You can then just
echo $variable
你可以这样做:
You can do:
这将带您进入正则表达式领域,但这将处理逗号之间随机间距的情况,例如
或
This takes you into regex land but this will handle cases of random spacing between commas, e.g.
or