0

我正在尝试使用以下脚本从某个网站提取值,但是我认为这不是有效的 DOM 文档,我想知道是否有其他方法?

       <?php
      $curl_handle=curl_init();
      curl_setopt($curl_handle,CURLOPT_URL,'http://www.indiagoldrate.com/gold-rate-in-mumbai-today.htm');
      curl_setopt($curl_handle,CURLOPT_CONNECTTIMEOUT,2);
      curl_setopt($curl_handle,CURLOPT_RETURNTRANSFER,1);
      $buffer = curl_exec($curl_handle);
      curl_close($curl_handle);
      if (empty($buffer))
      {
          print "Sorry, example.com are a bunch of poopy-heads.<p>";
      }
      else
      {
          print $buffer;
      }
      ?>
4

2 回答 2

0

你试过file_get_contents试试这个,

$str= htmlentities(file_get_contents('http://www.indiagoldrate.com/gold-rate-in-mumbai-today.htm'));

读取文件获取内容

于 2013-07-26T04:49:58.790 回答
0

尽管代码中的页面 ( http://www.indiagoldrate.com/gold-rate-in-mumbai-today.htm ) 不是有效的 DOM 文档,但您仍然可以使用 PHP 的DOMDocument对其进行解析。例如,今天我们将在孟买市获得 1g 22k 金的价格:

libxml_use_internal_errors(true); //get rid of the warnings

$dom = new DOMDocument;
$dom->loadHTML($buffer);
$xp = new DOMXPath($dom);
$price = $xp->query('//*[@id="right_center"]/table[1]/tr[3]/td[2]/table/tr[1]/td[2]')->item(0)->nodeValue;

libxml_clear_errors();
libxml_use_internal_errors(false);

var_dump($price);
于 2013-07-26T07:34:17.263 回答