在php中格式化字符串

时间:2012-07-23 19:11:17

标签: php

任何人都可以帮助这种格式化。我在数据库中有一个段落(例如)'black; blue; green',我想从db和格式中调用它;成为新行\ n。

所以它变成了

black 
blue 
green

有什么想法吗?

2 个答案:

答案 0 :(得分:5)

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

答案 1 :(得分:0)

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

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

Refer this for more