スタイル属性を持つすべてのタグを取得する必要があります
$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;
}
しかし、それは何も出力していません。私のコードのエラーは何ですか?? さらに、font-size、font-weight、font-family など、スタイル内の CSS プロパティ名のみを取得し、それらの値は取得したくありません。