如何使用样式找到表?我知道它具有atter的样式:
style ="边界:1px固体#AAAAAA;边界崩溃:倒塌;宽度:600px;背景:#ffffff; text-align:center; center; margin-top:10px;"
;"
但是如何将其与"查找"一起使用?
我尝试了:
$scrap['content']->find('table[style*=border: 1px solid #aaaaaa; border-collapse: collapse; width: 600px; background: #ffffff; text-align: center; margin-top: 10px;]');
但它不起作用
它对我有用:
require_once('simple_html_dom.php');
$html = <<<EOF
<table>foo</table>
<table style="border: 1px solid #aaaaaa; border-collapse: collapse; width: 600px; background: #ffffff; text-align: center; margin-top: 10px;">bar</table>
EOF;
$doc = str_get_html($html);
echo $doc->find('table[style*=border: 1px solid #aaaaaa; border-collapse: collapse; width: 600px; background: #ffffff; text-align: center; margin-top: 10px;]', 0)->text();
//=> bar