Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个列名战斗机,其中包括 mysql 中的一些值,例如,
| 战士 |
| 摇滚 |
| 约翰塞纳,|
| 承办者,|
所以,我想当我在浏览器中显示它时,它应该看起来像
岩石
约翰塞纳
承办者
我只想使用 PHP 从数据库中删除逗号
任何帮助将不胜感激..
给
str_replace(",","",$str);
在 SQL 查询中使用 REPLACE()
SELECT REPLACE(fighters, ',', '') FROM table
尽管如果超出我的范围,为什么您要在查询中执行此操作而不是在 php 端剥离它