只是想参加preg_match
第二场比赛。
<?php
$url = "http://domain.com";
preg_match('~<table([^>]*)(class\\s*=\\s*["\']ladder-table["\'])([^>]*)>(.*?)</table>~i', file_get_contents($url), $match);
print $match[0];
?>
这是我要查找的表:
<table class="ladder-table">Content</table>
<table class="ladder-table">Content</table> <-- [This one]
<table class="ladder-table">Content</table>
最后两个表被 java 脚本代码隐藏。对图案有影响吗?