PHP Simple HTML DOM - Get text inside <td> tag

怎甘沉沦 提交于 2019-12-13 11:42:06

问题


So I have this .html file that I have to analyze. In that file I have lines like this one:

<tr>
    <td colspan=1 rowspan=1 bgcolor=#ffffff align=left valign=top>
        <font size=1 face="Tahoma" color=#000000>
            <nobr>
                 240,0000
            </nobr>
        </font>
    </td>

     <td colspan=1 rowspan=1 bgcolor=#ffffff align=left valign=top>
        <font size=1 face="Tahoma" color=#000000>
            <nobr>
                 340,0000
            </nobr>
        </font>
    </td>
</tr>

What I need to get is 240,0000 , 340,0000 and so on. I have tried something like this:

// Create DOM from URL or file
$html = file_get_html('File.html');

foreach($html->find('td') as $element) 
   echo $element->text. '<br>';

Doing it this way I don't get the text I want to get.

How can I make reference to the text inside tag? So I can get the values.


回答1:


Nothing like $element->text Use $element->plaintext

foreach ( $html->find('td nobr') as $element ) {
    echo $element->plaintext . '<br>';
}


来源:https://stackoverflow.com/questions/15822908/php-simple-html-dom-get-text-inside-td-tag

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!