Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好的,我一直在阅读简单的 php html dom,到目前为止效果很好。
我有一个表,我正在尝试将其转换为 mysql 数据库。
我正在使用这个:
foreach($html->find('TR') as $row) { etc.etc.etc. }
我的桌子:
<TR BGCOLOR="CCDDFF"> <TD valign="top"> </TD> </TR>
但我如何从 tr 获得 bgcolor ?
你试过这个$row->getAttribute('bgcolor')方法吗?
$row->getAttribute('bgcolor')