如何使用cURL php从其他网站获取正确的标签?

时间:2013-08-14 08:39:58

标签: php curl

我一直试图从其他网站获取特定的表格。我用来获取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]; }

不返回任何结果。谢谢你的帮助。

0 个答案:

没有答案