1

外部サイトの html ソースから、 andのv4.0 with A2DP後に作成された行を取得しようとしています。他の場合には他の値を持つことができますが、常にとの間ですYes,,v4.0 with A2DPYes,,

これは、html の外部ソースです。

<tr>
<td class="ttl"><a href="glossary.php3?term=wi-fi">WLAN</a></td>
<td class="nfo">Wi-Fi 802.11 a/b/g/n, dual-band, DLNA, Wi-Fi Direct, Wi-Fi hotspot</td>
</tr>
<tr> 
<td class="ttl"><a href="glossary.php3?term=bluetooth">Bluetooth</a></td>
<td class="nfo">Yes, v4.0 with A2DP, LE, EDR</td>
</tr>
<tr>
<td class="ttl"><a href="glossary.php3?term=nfc">NFC</a></td>
<td class="nfo">Yes</td>
</tr>

私はこのコードを使用しています:

<?php
include_once('/simple_html_dom.php');
$dom = file_get_html("http://www.gsmarena.com/pantech_vega_no_6-5268.php");
foreach ($dom->find('tr') as $node) {
if (is_a($node->children(0), 'simple_html_dom_node')) {
    if ($node->children(0)->plaintext == "Bluetooth") {
        echo $node->children(1)->plaintext;
    }
}
}
?>

そして、私はBluetoothのすべてのラインを取得しています:

Yes, v4.0 with A2DP, LE, EDR
4

1 に答える 1

0

次のようにコードを変更してみてください。

$plain = explode(',', $node->children(1)->plaintext);
echo $plain[1];
于 2013-02-02T09:23:13.007 に答える