2010-02-21 78 views
1

這裏是我的字符串:PHP修剪前5個字符+分號

usercss:body background: red, #header: background: #fff; 

我想, (comma)刪除usercss:

body background: red, #header: background: #fff; 

然後explode產生像這樣的列表:

body { 
background: red; 
} 
#header { 
background: #fff; 
} 

在{}中使用大括號可能會非常棘手,但如果有人能夠幫助我把它分解成如下列表:

body background: red; #heeader background: #fff; 

這將是一個很大的幫助!

+0

爲什麼在'#header'後面有分號但在'body'後面沒有分號? – Gumbo 2010-02-21 15:25:06

回答

1
$content=substr($content,strlen('usercss:')); 
$arr=split(",",$content); 
+0

不會是strlen('usercss:')? – jellyfishtree 2010-02-21 17:50:35

+0

是的,編輯 – Pentium10 2010-02-21 19:21:49