신문사의 뉴스가져 오기

각 신문사의 최신아이티 뉴스가져 오기
원래는 화일 분리 해서 만들었는데 여따 올릴랑께 쭈욱 썼습니다.
그냥 심심해서 만들어 봤습니다.
급조 한기라서 안이쁘게 했고 잡팁은 더더욱 없네여 ^^
그냥 오늘자 아이티 뉴스를 가져오는기 입니다.

그리두 이거 확장하면 꽤 쓸만할낍니다.
수정 부분있음 말해 주샤요

$fp = fopen($url, “r”);

while(!feof($fp)){
$tmp = fgets($fp, 1024);
$temp .= $tmp;
}

fclose($fp);

return $temp;
}//function get

function Strip($all){// 링크랑 제목만 빼오기

$link_pm=strpos($all,”>”);

$link=substr($all,0,$link_pm);

if(!$link) return;

if(ereg(“””,$link)){

$link_p=strpos($link,”””);
$link=substr($link,$link_p+1);
$link_p=strpos($link,”””);

$link=substr($link,0,$link_p);
}

if(ereg(“‘”,$link)){

$link_p=strpos($link,”‘”);
$link=substr($link,$link_p+1);
$link_p=strpos($link,”‘”);

$link=substr($link,0,$link_p);
}

$link=trim($link);

$substr=substr($all,$link_pm+1);
$substr_p=strpos($substr,”“);
$substr=substr($substr,0,$substr_p);
$strip=strip_tags($substr);
$strip=trim($strip);

return array(link => $link, sub => $strip);
}//function strip($all)

function makeUrl($Url, $Link){

if(!strpos($Link,”http://”) && substr_count(“$Link”,”http://”)) return $Link;

$eURL = pathinfo(“$Url”);

$host = parse_url($Url);
$host = $host[scheme].”://”.$host[host];

$Link = “/”.$Link; //링크가 루트인지 확인위해 임의로 붙인다.
if(substr_count(“$Link”,”../”)){ //한칸앞으로

$Link = str_replace(“./../”, “”, $Link);
$Link = str_replace(“../”, “”, $Link);

$pos = strrpos($eURL[“dirname”], “/”);
$makeUrl = substr($eURL[“dirname”],0,$pos);

$makeUrl = “$makeUrl”.”$Link”;

}else if(substr_count(“$Link”,”//”) && !strpos($Link, “//”)){ //루트로 가라

$makeUrl = $host.”/”.str_replace(“//”, “”, $Link);

}else{ //제자리

$Link = str_replace(“./”, “”, $Link);
$makeUrl = $eURL[“dirname”].”$Link”;
}

return $makeUrl;
}
////////////////////////////////////// 펑션끝
$date_Y = date(“Y”);
$date_M = date(“m”);
$date_D = date(“d”);

$mdate = “$date_Y.$date_M.$date_D”; //확장성 위해 이르케
////////////////////////////////////////////////////////////<== 신문사별설정 추가가능 $newspaper[] = “조선일보”;
$URL[] = “http://www.chosun.com/it/”;
$like[] = “$date_Y$date_M$date_D”;

$newspaper[] = “중앙일보”;
$URL[] = “http://www.joins.com/it/list/it_list.html”;
$like[] = “$date_Y$date_M$date_D”;

$newspaper[] = “동아일보”;
$URL[] = “http://www.donga.com/fbin/output?f=totalk&code=k__”;
$like[] = “$date_Y$date_M$date_D”;

////////////////////////////////////////////////////////////<== 여그까지 신문사별설정 for($x=0; $x < sizeof($newspaper); $x++){ $temp = get($URL[$x]); $all = split(“href =|HREF =|href=|HREF=”,$temp);//–> url 추출

for($i=0; $i < sizeof($all); $i++){ $kisa = Strip($all[$i]); if(ereg($like[$x], $kisa[link]) && 20 < strlen($kisa[sub])){ $LinkURL = makeUrl($URL[$x], $kisa[link]);
echo “
[$newspaper[$x]]$kisa[sub]
“;
}//if(ereg($like[$x], $kisa[link]) && 20 < strlen($kisa[sub]))
}//for($i=0; $i < sizeof($all); $i++)
}//for($x=0; $x < sizeof($newspaper); $x++)
?>