I have such an inline CSS like this
color:#777;font-size:16px;font-weight:bold;left:214px;position:relative;top:70px
The CSS may end with a semicolon ";" or not. It also can contain extra space between its values. I'm about using "explode" function to parse the CSS into an array, something like :
Array(
"color" => "#777",
"font-size" => "16px",
"font-weight" => "bold",
and so on.
Can anybody suggest me a way to use regular expression to complete this task?