我一直试图从其他网站获取特定的表格。我用来获取curl页面的代码可以成功提取整个页面。他们的html代码中有这个表:
<table width="380" cellspacing="1" cellpadding="0" border="0" bgcolor="#cccccc" align="center">(...desired content...)</table>
这是我想要整个页面的唯一部分。有没有正确的方法来获得它?
我一直在使用:
if (preg_match('/<table width="380" cellspacing="1" cellpadding="0" border="0" bgcolor="#cccccc" align="center">(.*)<\/table/s', $response, $matches))
{
echo $matches[0];
}
不返回任何结果。谢谢你的帮助。