我有以下CSS代码
header{
color:#00F;
font-weight:bold
}
/* This is some comment */
body{
font-size:11px;
}
我想把它分成一个多维数组,比如
Array (
[header] => array (
[color] => "#00F",
[font-weight] => "bold"
)
[body] => array (
[font-size] => "11px"
)
)
我该怎么做呢?
非常感谢