<?php $url = "http://www.xxx.com";//页面地址 $info=file_get_contents($url);//获取页面信息?>
参考
$p='#<TD align="left" colSpan="4">(.+?)</TD>#s';preg_match($p,$info,$m);echo $m[1];
参考
$p='#<TD align="left" colSpan="4">(.+?)</TD>#s';preg_match($p,$info,$m);echo $m[1];