2

外部のhtmlソースからの読み取りに問題があります。私の場合はカスタムオブジェクトを読み取るだけです。「HSDPA2100」しかし、実際のコードは外部ソースからすべてのnfoクラスを読み取ります。

外部htmlの一部:

<table cellspacing="0">
<tbody><tr>
<th rowspan="8" scope="row">General</th>
<td class="ttl"><a href="network-bands.php3">2G Network</a></td>
<td class="nfo">CDMA 800 / 1900 </td>
</tr><tr>
<td class="ttl">&nbsp;</td>
<td class="nfo">GSM 850 / 900 / 1800 / 1900 </td>
</tr>
<tr>
<td class="ttl"><a href="network-bands.php3">3G Network</a></td>
<td class="nfo">HSDPA 2100 </td>
</tr>
<tr>
<td class="ttl">&nbsp;</td>
<td class="nfo">CDMA2000 1xEV-DO </td>
</tr>
<tr>
<td class="ttl"><a href="network-bands.php3">4G Network</a></td>
<td class="nfo">LTE 800 </td>
</tr>
<tr>
<td class="ttl"><a href="glossary.php3?term=sim">SIM</a></td>
<td class="nfo">Mini-SIM</td>
</tr><tr>
<td class="ttl"><a href="#" onclick="helpW('h_year.htm');">Announced</a></td>
<td class="nfo">2013, January</td>
</tr>
<tr>
<td class="ttl"><a href="#" onclick="helpW('h_status.htm');">Status</a></td>
<td class="nfo">Coming soon. Exp. release 2013, February</td>
</tr>
</tbody></table><table cellspacing="0">
<tbody><tr>
<th rowspan="2" scope="row">Body</th>
<td class="ttl"><a href="#" onclick="helpW('h_dimens.htm');">Dimensions</a></td>
<td class="nfo">-</td>
</tr><tr>
<td class="ttl"><a href="#" onclick="helpW('h_weight.htm');">Weight</a></td>
<td class="nfo">&nbsp;</td>
</tr>

</tbody></table><table cellspacing="0">
<tbody><tr>
<th rowspan="4" scope="row">Display</th>
<td class="ttl"><a href="glossary.php3?term=display-type">Type</a></td>
<td class="nfo">TFT capacitive touchscreen, 16M colors</td>
</tr><tr>
<td class="ttl"><a href="#" onclick="helpW('h_dsize.htm');">Size</a></td>
<td class="nfo">1080 x 1920 pixels, 5.9 inches (~373 ppi pixel density)</td>
</tr>
<tr>
<td class="ttl"><a href="glossary.php3?term=multitouch">Multitouch</a></td>
<td class="nfo">Yes</td>
</tr>
<tr><td class="ttl">&nbsp;</td><td class="nfo">- Flux UX UI</td> 

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

  <?php
  include_once('/simple_html_dom.php');
  $dom = file_get_html("http://www.site.com/pantech_vega_no_6-5268.php");
  // alternatively use str_get_html($html) if you have the html string already...
  foreach ($dom->find('td[class=nfo]') as $node)
{
$result = $node->innertext;
$price = explode(",", $result);
echo $price[0];
} 
?>

そして私はこれを受け取っています:CDMA 800 / 1900 GSM 850 / 900 / 1800 / 1900 HSDPA 2100 CDMA2000 1xEV-DO LTE 800 Mini-SIM2013Coming soon. Exp. r... etc

私が欲しいのはそうですHSDPA 2100が、他のモデルの電話の場合、価値はHSDPA 1900または他のものであり、HSPDA常に安定していて最初になります。

4

1 に答える 1

1

すべてのtdは同じクラス名「nfo」を持ち、すべての要素をループするため、期待どおりの結果が得られます。

必要なデータが常に3行目にある場合は、変数を取得する代わりに配列にデータを入力してから、3番目の値を取得できます。このように$result[2]

更新:HSDPAが常に存在する場合は、それを確認してください。

     <?php
      include_once('/simple_html_dom.php');
      $dom = file_get_html("http://www.site.com/pantech_vega_no_6-5268.php");
      // alternatively use str_get_html($html) if you have the html string already...
      foreach ($dom->find('td[class=nfo]') as $node)
    {
    $result = $node->innertext;
if (strpos($result, 'HSDPA') === false)
{
continue;
}
    $price = explode(",", $result);
    echo $price[0];
break;
    } 
    ?>
于 2013-01-28T22:07:20.610 に答える