신문 기사를 긁어오기^^

· 19년 전 · 3102 · 3
<?

function get($url){//문서가져옮
$fp = fopen($url, "r");

while(!feof($fp)){
$tmp = fgets($fp, 900);
$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,"</a>");
$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.donga.com/fbin/output?f=total";
$like[] = "$date_Y$date_M$date_D";

$newspaper[] = "연합신문";
$URL[] = "http://www.yonhapnews.co.kr/services/0400000000.html";
$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 "<a href='$LinkURL'>[$newspaper[$x]]$kisa[sub]</a><br>";
}//if(ereg($like[$x], $kisa[link]) & 20 < strlen($kisa[sub]))
}//for($i=0; $i < sizeof($all); $i++)
}//for($x=0; $x < sizeof($newspaper); $x++)
?><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:12:10 PHP & HTML에서 이동 됨]</div>
|

댓글 3개

기타 신문기사의 주소는 스스로 찾으면 되더군요..
아래는 예를 들었습니다.
////////////////////////////////////////////////////////////<== 신문사별설정 추가가능



$newspaper[] = "<font color=cc0000>굿</font>";
$URL[] = "http://www.hot.co.kr/sports/list.html";
$like[] = "$date_Y$date_M$date_D";



////////////////////////////////////////////////////////////<== 여기까지 신문사별설정
긁어올수 있는 신문기사 주소는 어떻게 찾나요?
특별한 방법이 있는지요?
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
19년 전 조회 3,866
19년 전 조회 2,483
19년 전 조회 2,490
19년 전 조회 2,986
19년 전 조회 5,911
19년 전 조회 5,695
19년 전 조회 2,380
19년 전 조회 3,433
19년 전 조회 3,000
19년 전 조회 2,354
19년 전 조회 2,872
19년 전 조회 1,730
19년 전 조회 1,874
19년 전 조회 1,977
19년 전 조회 2,148
19년 전 조회 1,813
19년 전 조회 1,959
19년 전 조회 1,919
19년 전 조회 1,998
19년 전 조회 1,663
19년 전 조회 2,790
19년 전 조회 2,117
19년 전 조회 3,382
19년 전 조회 3,410
19년 전 조회 2,669
19년 전 조회 2,745
19년 전 조회 2,574
19년 전 조회 2,824
19년 전 조회 2,824
19년 전 조회 3,301
19년 전 조회 3,008
19년 전 조회 5,417
19년 전 조회 2,245
19년 전 조회 2,329
19년 전 조회 2,154
19년 전 조회 2,067
19년 전 조회 2,069
19년 전 조회 2,267
19년 전 조회 3,342
19년 전 조회 3,199
19년 전 조회 2,993
19년 전 조회 2,682
19년 전 조회 2,771
19년 전 조회 2,432
19년 전 조회 2,474
19년 전 조회 1,745
19년 전 조회 2,450
19년 전 조회 2,815
19년 전 조회 2,816
19년 전 조회 3,103
19년 전 조회 2,889
19년 전 조회 1,855
19년 전 조회 1,965
19년 전 조회 2,864
19년 전 조회 2,358
19년 전 조회 4,108
19년 전 조회 2,622
19년 전 조회 2,513
19년 전 조회 3,655
19년 전 조회 3,245
19년 전 조회 2,370
19년 전 조회 3,164
19년 전 조회 2,369
19년 전 조회 3,218
19년 전 조회 3,624
19년 전 조회 5,330
19년 전 조회 3,245
19년 전 조회 3,260
19년 전 조회 2,850
19년 전 조회 2,590
19년 전 조회 2,836
19년 전 조회 2,564
19년 전 조회 2,691
19년 전 조회 2,482
19년 전 조회 2,832
19년 전 조회 3,101
19년 전 조회 3,374
19년 전 조회 7,189
19년 전 조회 5,308
19년 전 조회 2,548
19년 전 조회 5,289
19년 전 조회 3,232
19년 전 조회 2,588
19년 전 조회 2,269
19년 전 조회 3,704
19년 전 조회 3,020
19년 전 조회 3,394
19년 전 조회 3,017
19년 전 조회 3,526
19년 전 조회 2,839
19년 전 조회 3,582
19년 전 조회 2,547
19년 전 조회 4,237
19년 전 조회 3,423
19년 전 조회 4,233
19년 전 조회 3,617
19년 전 조회 3,257
19년 전 조회 3,527
19년 전 조회 2,577
19년 전 조회 2,969