这是我的字符串:
usercss:body background: red, #header: background: #fff;
我想删除usercss:
body background: red, #header: background: #fff;
然后由explode
, (comma)
生成如下列表:
body {
background: red;
}
#header {
background: #fff;
}
在{}中获取大括号可能会很棘手,但如果有人可以帮助我将其分解为如下列表:
body background: red; #heeader background: #fff;
那将是一个很大的帮助!
答案 0 :(得分:1)
$content=substr($content,strlen('usercss:'));
$arr=split(",",$content);
答案 1 :(得分:0)
从PHP5.3起,您还可以使用http://de.php.net/manual/en/function.strstr.php
$content = strstr($content, 'usercss', true);
而不是substr
。