0

任何人都可以帮助这种格式。我在数据库中有一段说(例如)“黑色;蓝色;绿色”,我想从数据库中调用它,格式为 ; 成为新行\n。

所以它变成了

black 
blue 
green

有任何想法吗?

4

2 回答 2

5
$string = str_replace(';', "\n", $string);
于 2012-07-23T19:12:32.710 回答
0

$str = str_replace(";", "\n", $string);

找到;并用换行符替换它。

参考这个了解更多

于 2012-07-23T19:17:48.097 回答