php在找到某个字符后插入换行符

时间:2015-03-30 19:58:26

标签: php

我试图清理一个CSS脚本,它由一行组成,如下所示:

footer .column .f-links li a{color:#1297de;font-size:14px}footer .column .address{font-size:14px;color:#3d3d3d}footer .column .infos{margin-top:10px;color:#3d3d3d}footer .column .infos .phone{background:url("../images/icon-phone.png") no-repeat 0 2px;padding:0 0 0 25px;margin-bottom:10px}@media (min-width:1023px) and (max-width:1024px){footer .column .infos .phone{font-size:10px;line-height:24px;padding-top:7px}footer .column .infos .email{font-size:10px;padding-top:7px}}

我想在角色前后插入一个换行符" {"和"}"分别

感谢您的评论。

1 个答案:

答案 0 :(得分:4)

使用str_replace()功能:

str_replace(['{', '}'], ["\r\n}", "}\r\n"], $string);