如何在php Dom中读取内联CSS样式?
我尝试使用getAtttibute。$html_elements->item(0)->getAttribute("style")
下一步怎么办?
说您的index.html
有
<div style="background-color:black;"></div>
<div style="background-color:white;"></div>
比起PHP,您可以阅读内联CSS,如下所示:
$dom = new DOMDocument;
$dom->loadHTMLfile("index.html");
$divs = $dom->getElementsByTagName('div');
foreach ($divs as $div) {
$div_style = $div->getAttribute('style');
echo $div_style;
}