vendredi 11 novembre 2016

Parse tables using Symfony DomCrawler

I am using Symfony DomCrawler to crawl http://ift.tt/2fKFTnx and I am trying to extract the data which sits within the table on the page. How would I loop through the rows within the table?

The HTML that houses the table is below;

<div id="data">
    <table width="610">
        <tbody>
            <tr bgcolor="#CCCCCC">
                <th id="nameh">Name</th>
                <th width="90">Status<span style="vertical-align:super; font-size:8px;">1</span></th>
                <th width="65">Last Price<span style="vertical-align:super; font-size:8px;">1</span></th>
                <th width="100">Last Stock<span style="vertical-align:super; font-size:8px;">1</span></th>
            </tr>
            <tr id="tr76540" onmouseover="this.bgColor='#99FF99'" onmouseout="this.bgColor=''" bgcolor="">
                <td><a href="http://www.awin1.com/" target="_blank" rel="nofollow">Emma's Horse Trailer (3186) : TheToyShop.com </a></td><td align="center" class="stockStatus">Out of Stock</td>
                <td align="right">£20.00</td>
                <td align="left" title="Dec 01, 2014 - 12:07 AM EST">Dec 01 - 12:07 AM</td>
            </tr>
            <tr id="tr7510" onmouseover="this.bgColor='#99FF99'" onmouseout="this.bgColor=''" bgcolor="">
                <td><a href="http://www.awin1.com/" target="_blank" rel="nofollow">Emma's Horse Trailer (3186) : TheToyShop.com </a></td><td align="center" class="stockStatus">Out of Stock</td>
                <td align="right">£20.00</td>
                <td align="left" title="Dec 01, 2014 - 12:07 AM EST">Dec 01 - 12:07 AM</td>
            </tr>
            <tr id="tr73410" onmouseover="this.bgColor='#99FF99'" onmouseout="this.bgColor=''" bgcolor="">
                <td><a href="http://www.awin1.com/" target="_blank" rel="nofollow">Emma's Horse Trailer (3186) : TheToyShop.com </a></td><td align="center" class="stockStatus">Out of Stock</td>
                <td align="right">£20.00</td>
                <td align="left" title="Dec 01, 2014 - 12:07 AM EST">Dec 01 - 12:07 AM</td>
            </tr>
            <tr id="tr75610" onmouseover="this.bgColor='#99FF99'" onmouseout="this.bgColor=''" bgcolor="">
                <td><a href="http://www.awin1.com/" target="_blank" rel="nofollow">Emma's Horse Trailer (3186) : TheToyShop.com </a></td><td align="center" class="stockStatus">Out of Stock</td>
                <td align="right">£20.00</td>
                <td align="left" title="Dec 01, 2014 - 12:07 AM EST">Dec 01 - 12:07 AM</td>
            </tr>
            <tr id="tr73310" onmouseover="this.bgColor='#99FF99'" onmouseout="this.bgColor=''" bgcolor="">
                <td><a href="http://www.awin1.com/" target="_blank" rel="nofollow">Emma's Horse Trailer (3186) : TheToyShop.com </a></td><td align="center" class="stockStatus">Out of Stock</td>
                <td align="right">£20.00</td>
                <td align="left" title="Dec 01, 2014 - 12:07 AM EST">Dec 01 - 12:07 AM</td>
            </tr>           
        </tbody>
    </table>
</div>



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire