我有一个 html 字符串
$html_string = '<div style="font-family:comic sans ms,cursive;">
<div style="font-size:200%;">Some Text </div></div>';
我试过了
$dom = new DOMDocument;
$dom->loadHTML($html_string);
$divs = $dom->getElementsByTagName('div');
for($i=0;$i<$divs->length;$i++) {
$attrib = $divs->item($i)->getAttribute("style");
echo $attrib;
echo '<br />';
}
它给出以下输出
font-family:comic sans ms,cursive
font-size:200%;
我需要
font-family
font-size
我怎样才能只得到这些键而不是它们的值?