1

这是我要找的东西:

我有一个显示 HTML 格式数据的链接:

http://www.118.com/people-search.mvc...0&pageNumber=1

数据格式如下:

<div class="searchResult regular"> 

鸟约翰

56 Leathwaite 路伦敦
SW11
6RS 020 7228 5576

我希望我的 PHP 页面执行上面的 URL 并根据上面的标签从结果 HTML 页面中提取/解析数据为 h2=名称地址=地址电话号码=电话号码

并以表格格式显示它们。

我得到了这个,但它只显示 HTML 页面的 TEXT 格式,但在一定程度上有效:

<?
function get_content($url) 
{ 
$ch = curl_init(); 

curl_setopt ($ch, CURLOPT_URL, $url); 
curl_setopt ($ch, CURLOPT_HEADER, 0); 

ob_start(); 

curl_exec ($ch); 
curl_close ($ch); 
$string = ob_get_contents(); 

ob_end_clean(); 

return $string; 

} 


$content = get_content("http://www.118.com/people-search.mvc?Supplied=true&Name=william&Location=Crabtree&pageSize=50&pageNumber=1"); 
echo $content;
$content = get_content("http://www.118.com/people-search.mvc?Supplied=true&Name=william&Location=Crabtree&pageSize=50&pageNumber=2"); 
echo $content;
$content = get_content("http://www.118.com/people-search.mvc?Supplied=true&Name=william&Location=Crabtree&pageSize=50&pageNumber=3"); 
echo $content;
$content = get_content("http://www.118.com/people-search.mvc?Supplied=true&Name=william&Location=Crabtree&pageSize=50&pageNumber=4"); 
echo $content;

?>
4

1 回答 1

4

您需要使用 dom 解析器Simple HTML或类似的

将文件读入 dom 对象并使用适当的选择器对其进行解析:

$html = new simple_html_dom("http://www.118.com/people-search.mvc...0&pageNumber=1");

foreach($html->find(.searchResult+regular) as $div) {
  //parse div contents here to extract name and address etc.
}
$html->clear();
unset($html);

有关详细信息,请参阅简单 HTML文档。

于 2010-09-06T08:46:42.460 回答