使用PHP从HTML表中检索数据



我知道这个问题已被问到很多次,但是我已经研究了很多示例,但我仍然无法从此HTML表中获取我需要的数据。

我有一个生成HTML表的PHP文件:

    <table width="97%">
    <tr><td align="center">
    <!-- table for columns -->
    <table border="0" cellpadding="15">
    <tr>
        <td valign="top">
        <table border="0" width="800">
        <caption style="font-size: 32px; font-weight: bold;">
        </caption>
        <!-- force column widths exactly (for some reason it didn't want to
        play along with normal width settings) -->
        <tr>
        <td><img src="/spacer.gif" width="160" height="1" border="0" alt="" /></td>
        <td><img src="/spacer.gif" width="170" height="1" border="0" alt="" /></td>
        </tr>
            <tr>
                <td style="">
                DATA1
                </td>
                <td width="200" style="font-size: 80px; font-weight:bold;">
                0            </td>
            </tr>
            <tr>
                <td style="">
                DATA2
                </td>
                <td width="200" style="font-size: 80px; font-weight:bold;">
                0            </td>
            </tr>
            <tr>
                <td style="">
                DATA3
                </td>
                <td width="200" style="font-size: 80px; font-weight:bold;">
        0            </td>
            </tr>
            <tr>
                <td style="">
                DATA4
                </td>
                <td width="200" style="font-size: 80px; font-weight:bold;">
                5            </td>
            </tr>
            <tr>
                <td style="">
                DATA5
                </td>
                <td width="200" style="font-size: 80px; font-weight:bold;">
                0            </td>
            </tr>
            <tr>
                <td style="">
                DATA6
                </td>
                <td width="200" style="font-size: 80px; font-weight:bold;">
                0            </td>
            </tr>

        <!-- end of stats_with_style loop -->
        </table>
        </td>

    <!-- end of groups loop -->
    </tr>
    </table>
    <br /><br />

    </td></tr>
    </table>

我想使用php。

任何人都可以阐明我如何做到这一点吗?

我通常会建议使用像Ganon这样的DOM解析器,但是如果此HTML的结构保持相当简单(像这样),只需使用PHP的本机DOM和XPATH选择器即 - 开头解决方案。将HTML加载到这样的字符串中:

<?php
$html = <<<EOF
<table width="97%">
    <tr><td align="center">
    <!--SNIP-->
EOF;
$dom = new DOMDocument();
$dom->loadHTML($html);
$xpath = new DOMXPath($dom);
$data = [];
// targets any <td> with a <style> element and only selects odd elements
// (XPath counting starts at 1)
foreach($xpath->query("//td[@style][position() mod 2 = 0]") as $node) {
    //replace superflous whitespace in the string
    $data[] = preg_replace('/s+/', '', $node->nodeValue);
}

,您现在将拥有一个$数据[]数字仅由数字值组成(您请求的)。

如果您还需要键(data1等...),则可以通过循环添加此代码来使其成为一个相当简单的工作,将其变成关联数组:

foreach($xpath->query("//td[@style][position() mod 2 = 1]") as $node) {
    $keys[] = preg_replace('/s+/', '', $node->nodeValue);
}
$dataWithKeys = array_combine($keys, $data);

希望有帮助!

使用PHP生成文件,但是您想使用PHP将数据恢复吗?也许您应该首先将这些数据保存在其他地方,以更易于阅读的格式。

相关内容

  • 没有找到相关文章

最新更新