신문 기사를 긁어오기^^

· 19년 전 · 3079 · 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,844
19년 전 조회 2,456
19년 전 조회 2,469
19년 전 조회 2,966
19년 전 조회 5,887
19년 전 조회 5,679
19년 전 조회 2,362
19년 전 조회 3,415
19년 전 조회 2,983
19년 전 조회 2,336
19년 전 조회 2,850
19년 전 조회 1,705
19년 전 조회 1,862
19년 전 조회 1,954
19년 전 조회 2,127
19년 전 조회 1,795
19년 전 조회 1,937
19년 전 조회 1,895
19년 전 조회 1,977
19년 전 조회 1,652
19년 전 조회 2,764
19년 전 조회 2,091
19년 전 조회 3,357
19년 전 조회 3,391
19년 전 조회 2,646
19년 전 조회 2,725
19년 전 조회 2,554
19년 전 조회 2,808
19년 전 조회 2,806
19년 전 조회 3,279
19년 전 조회 2,990
19년 전 조회 5,400
19년 전 조회 2,226
19년 전 조회 2,307
19년 전 조회 2,136
19년 전 조회 2,046
19년 전 조회 2,050
19년 전 조회 2,249
19년 전 조회 3,323
19년 전 조회 3,181
19년 전 조회 2,969
19년 전 조회 2,667
19년 전 조회 2,753
19년 전 조회 2,407
19년 전 조회 2,454
19년 전 조회 1,721
19년 전 조회 2,428
19년 전 조회 2,785
19년 전 조회 2,794
19년 전 조회 3,080
19년 전 조회 2,870
19년 전 조회 1,839
19년 전 조회 1,948
19년 전 조회 2,846
19년 전 조회 2,341
19년 전 조회 4,093
19년 전 조회 2,601
19년 전 조회 2,486
19년 전 조회 3,633
19년 전 조회 3,220
19년 전 조회 2,349
19년 전 조회 3,143
19년 전 조회 2,347
19년 전 조회 3,199
19년 전 조회 3,607
19년 전 조회 5,313
19년 전 조회 3,226
19년 전 조회 3,241
19년 전 조회 2,830
19년 전 조회 2,574
19년 전 조회 2,822
19년 전 조회 2,548
19년 전 조회 2,660
19년 전 조회 2,461
19년 전 조회 2,813
19년 전 조회 3,076
19년 전 조회 3,351
19년 전 조회 7,161
19년 전 조회 5,287
19년 전 조회 2,528
19년 전 조회 5,272
19년 전 조회 3,215
19년 전 조회 2,565
19년 전 조회 2,248
19년 전 조회 3,688
19년 전 조회 2,998
19년 전 조회 3,381
19년 전 조회 2,998
19년 전 조회 3,507
19년 전 조회 2,820
19년 전 조회 3,557
19년 전 조회 2,525
19년 전 조회 4,212
19년 전 조회 3,403
19년 전 조회 4,224
19년 전 조회 3,590
19년 전 조회 3,233
19년 전 조회 3,514
19년 전 조회 2,564
19년 전 조회 2,955