作者:手机用户2602905861 | 来源:互联网 | 2018-07-17 05:33
ec(2);<html> <head> <metahttp-equiv"Content-Type"content"texthtml;charsetgb2312">
$str = file_get_contents("http://news.163.com/rank/");
preg_match_all("#
(.*)
#i",$str,$match);
for($i=0; $i
{
echo "tttt".preg_replace("#(
)(.*)()#i","\2",$match[0][$i])."n";
}
?>
$str = file_get_contents("http://news.sina.com.cn/hotnews/");
preg_match_all("#(.*)#i",$str,$match);
for($i=0;$i
{
echo "tttt".preg_replace("#(.*)#i","\1",$match[0][$i])."n";
}
?>
$str = file_get_contents("http://news.qq.com/paihang.htm");
preg_match_all("#
(.*) | #i",$str,$match);
for($i=0;$i
{
echo "tttt".preg_replace("#(.*) | #i","\1",$match[0][$i])."n";
}
?>