SimpleHTMLDom搜索里面的文本

时间:2017-06-09 22:40:33

标签: php simple-html-dom

好的,我有一个拥有该网站的网站

<tr>
      <td class="first">EURO</td>
      <td class="">1.0</td>
      <td class="">1.2</td>
</tr>

使用SimpleHTMLDom我需要搜索&#34;欧元&#34;并获取其下<td>的数据

<?php
include("simple_html_dom.php");

$html = new simple_html_dom();

$html->load_file('currency_rates/default.asp');
?>

抱歉,我在这里做不了什么。 我尝试了很多,但我无法找到我想要的东西。

更新: 我试过那段代码。

if ($rows) {

    echo count($rows) . " \$rows found !<br />";

    foreach ($rows as $key => $row) {

        echo "<hr />";

        $columns = $row->find('td');

        // Find succeeded
        if ($rows) {
            $info = array();

            foreach ($columns as $col) {
                    $info = $col->plaintext . " ";
                    echo $info;
                }
        }
        else
            echo " /!\ Find() \$columns failed /!\ ";
    }
}
else
    echo " /!\ Find() \$rows failed /!\ ";

输出

EURO 1.0996 1.2567 

US DOLLARS 1.2364 1.4088

但现在我需要帮助将它们保存到变量(数组)

每种不同的货币

0 个答案:

没有答案