您可以使用file_get_contents()函数来完成此操作.此函数返回提供的URL的html.然后使用HTML Parser获取所需数据.
$html = file_get_contents("http://website.com");
$dom = new DOMDocument();
$dom->loadHTML($html);
$nodes = $dom->getElementsByTagName('h3');
foreach ($nodes as $node) {
echo $node->nodeValue."
"; // return
tag data
}
使用preg_match_all()提取数据的另一种方法
$html = file_get_contents($_REQUEST['url']);
preg_match_all('/
(.*?)/s', $html, $matches);
// specify the class to get the data of that class
foreach ($matches[1] as $node) {
echo $node."
";
}