我一直在尝试从其他网站获取特定表格。我使用 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];
}
不返回任何结果。感谢您的帮助。