时间:2021-07-01 10:21:17 帮助过:16人阅读
$url = 'http://sports.sohu.com/zhongchao.shtml';
$s = file_get_contents($url);
preg_match_all('/(?<=)\s
Array
(
[2] =>
名次 | 球队 | 场次 | 积分 | ||
---|---|---|---|---|---|
01 | 广州恒大 | 20 | 45 | ||
02 | 北京国安 | ||||
(.+?)<\/td>\s* | (.+?)<\/td>\s* | (\d+)<\/td>\s* | (.+?)<\/td>\s*<\/tr>/i',$str,$match1); foreach($match1 as $k=>$v){ if($k!=0){ foreach($v as $k1=>$v1){ if($k1<=15){ $jifen[$k][]=$v1; }else{ $sheshou[$k][]=$v1; } } } } echo " ";"; /* Array ( [1] => Array ( [0] => 01 [1] => 02 [2] => 03 [3] => 04 [4] => 05 [5] => 06 [6] => 07 [7] => 08 [8] => 09 [9] => 10 [10] => 11 [11] => 12 [12] => 13 [13] => 14 [14] => 15 [15] => 16 ) [2] => Array ( [0] => 广州恒大 [1] => 北京国安 [2] => 广州富力 [3] => 上海东亚 [4] => 贵州茅台 [5] => 山东鲁能 [6] => 天津泰达 [7] => 江苏舜天 [8] => 上海绿地 [9] => 长春亚泰 [10] => 杭州绿城 [11] => 大连阿尔滨 [12] => 上海申鑫 人气教程排行
|