function delhtml($content){
$content = eregi_replace("<html>.+</head>","", $content);
$content = preg_replace("/<.+?>/i","", $content);
return $content;
}
$oneurl = "http://www.chenapp.com";
$content = file_get_contents($oneurl);
echo delhtml($content);