PHP修剪前5个字符+分号

时间:2010-02-21 14:57:25

标签: php

这是我的字符串:

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;

那将是一个很大的帮助!

2 个答案:

答案 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