這裏是我的字符串: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;
這將是一個很大的幫助!
爲什麼在'#header'後面有分號但在'body'後面沒有分號? – Gumbo 2010-02-21 15:25:06