1

我需要获取所有具有样式属性的标签

$html = '<div style="font-style: italic; text-align: center; 
background-color: red;">On The Contrary</div><span 
style="font-style: italic; background-color: rgb(244, 249, 255); 
font-size: 32px;"><b style="text-align: center; 
background-color: rgb(255, 255, 255);">This is USA</b></span>';

$dom = new DOMDocument;
$dom->loadHTML($html);
$xp = new DOMXpath($dom);

foreach ($xp->query('/*[@style]') as $node) {
    $style =  $node->getAttribute('style');
    echo $style;
}

但它什么都没有。我的代码有什么错误?此外,我还想只获取样式中的 CSS PROperty 名称,例如 font-size、font-weight、font-family 而不是它们的值。

4

2 回答 2

5

您只需要在表达式中再添加一个正斜杠:

foreach( $xp->query('//*[@style]') as $node) {
    echo $node->tagName . " = " . $node->getAttribute('style') . "\n";
}

这将打印(请注意,它会在现有属性中保留换行符):

div = font-style: italic; text-align: center; 
background-color: red;
span = font-style: italic; background-color: rgb(244, 249, 255); 
font-size: 32px;
b = text-align: center; 
background-color: rgb(255, 255, 255);
于 2013-03-29T16:00:34.927 回答
0

xpath 选择器是

//*[@style]

对于样式内容,您必须对其进行解析,这意味着

$attr_names = array_map( function($v){ return (explode(':',$v))[0];}, 
                          explode(';',$style));
于 2013-03-29T16:07:37.983 回答