a

rss 뉴스읽기에서 원하는 만큼만 출력....

rss 뉴스제목글을 지정된 언론사별로 가져와서 홈페이지에 출력하려고 합니다.
아래 코드처럼 짜집기를 했는데
일단, 언론사별 rss 뉴스제목를 가져와서 출력이 되는거 까지는 이상이 없습니다
 
문제는...
아래 코드처럼 하면 ... 있는대로 다 가져오다 보니 약 100여개의 '뉴스제목'이 출력 되어버립니다.
 
홈페이지에는 '최신시간'순으로 or '기타'기준으로...
언론사구분없이 통틀어서 10여개 정도의 rss 뉴스제목만 홈페이지에 출력하고 싶습니다.
 
코드의 어느부분을 어떻게 손봐야 할런지요...??
도움글을 좀 부탁드립니다.
 
---------- 코드참고 ------------------------
 
 
$news = array(
 "sports" => array("스포츠서울","http://www.sportsseoul.com/rss/rss.asp?cp_flag=1&cat_flag=1"),
 "ohmynews" => array("오마이뉴스","http://rss.ohmynews.com/rss/ohmynews.xml"),
 "chosun" => array("조선일보","http://newsplus.chosun.com/hitdata/xml/index/index.xml"),
 "hani" => array("한겨레신문","http://www.hani.co.kr/rss/newsrank/"),
 "kbench" => array("케이벤치","http://rss.kbench.com/news.xml"),
 "YTN뉴스" => array("YTN","http://www.yonhapnews.co.kr/RSS/sokbo.xml")
);
$ns = $HTTP_GET_VARS["ns"];
if(empty($ns)){ $ns = array_keys($news); }
$newsList = array();
while (list($key, $value) = each ($news)) {
 $url = $value[1];
 $rss = new RSSReader($url,true,60,$DOCUMENT_ROOT."/newsmowa/cache");
 $response = $rss->Read();
 foreach($rss->getItems() as $item){
  if(isChoice($key)){
   if(isset($item["dc:date"])) $item["pubdate"] = $item["dc:date"];
   //array_push($newsList,array($value[0],$item["title"],$item["link"],$item["description"],$item["pubdate"]));
   array_push($newsList,
    array(
     NAME => $value[0],
     TITLE => $item["title"],
     LINK => $item["link"],
     DESCRIPTION => $item["description"],
     PUBDATE => $item["pubdate"],
     TOPUBDATE => _Topubdate($item["pubdate"]),
     IDXPUBDATE => _Topubdate($item["pubdate"],"YmdHis")
    )
   );
  }
 }
 $rss->free();
 unset($rss);
}
usort($newsList,"cmp");
echo "<html><head><title>뉴스모와</title>\n";
echo "<style><!-- BODY,TD,SELECT { FONT: 9pt Arial; LINE-HEIGHT: 17px;} //--></style>\n";
echo "<body>";
echo "<form>";
echo "<table width=100% border=1>\n";
echo "<tr><td>\n";

foreach($news as $key => $value) {
 $checked = isChoice($key)? "checked":"";
 echo "<input type=checkbox name=ns[] value=$key $checked> $value[0]\n";
}
echo "<input type=submit value=\"조회\"></td></tr>\n";
echo "</table>";
echo "</form>";
echo "<table width=100% border=0>\n";
echo "<tr><td align=center>뉴스제목</td><td align=center>출처</td><td align=center>발행일</td></tr>\n";
foreach($newsList as $list){
 printf("<tr><td><a href=\"%s\" target=_blank>%s</td><td align=center>%s</td><td align=center>%s</td></tr>\n",
  $list[LINK],$list[TITLE],$list[NAME],$list[TOPUBDATE]);
}
echo "</table>";
echo "</body></html>\n";
?>
|

댓글 1개

이미 처리 하셨는지 모르겠는데 혹시 해결하지 못하셨다면
참고 해서 수정해보십시요

// xml결과값을 모두 배열에 저장구현

// 다중배열 정렬
foreach (뉴스배열 as $key => $row) {
$sort[$key] = $row[' IDXPUBDATE'];
}
array_multisort($sort, SORT_ASC, 뉴스배열); // SORT_ASC , SORT_DESC

// 원하는 수만큼 뉴스 출력구현

http://php.net/manual/en/function.array-multisort.php
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
13년 전 조회 1,750
13년 전 조회 2,527
13년 전 조회 1,609
13년 전 조회 1,810
13년 전 조회 1,621
13년 전 조회 1,841
13년 전 조회 1,681
13년 전 조회 2,007
13년 전 조회 2,058
13년 전 조회 1,956
13년 전 조회 3,776
13년 전 조회 1,578
13년 전 조회 1,819
13년 전 조회 1,693
13년 전 조회 2,187
13년 전 조회 1,929
13년 전 조회 2,587
13년 전 조회 2,927
13년 전 조회 2,252
13년 전 조회 4,175
13년 전 조회 2,430
13년 전 조회 1,771
13년 전 조회 3,242
13년 전 조회 3,643
13년 전 조회 1,495
13년 전 조회 1,622
13년 전 조회 1,548
13년 전 조회 1,648
13년 전 조회 1,549
13년 전 조회 1,820
13년 전 조회 3,047
13년 전 조회 1,492
13년 전 조회 1,483
13년 전 조회 1,629
13년 전 조회 1,611
13년 전 조회 1,512
13년 전 조회 1,804
13년 전 조회 1,741
13년 전 조회 1,493
13년 전 조회 1,522
13년 전 조회 2,538
13년 전 조회 1,695
13년 전 조회 2,093
13년 전 조회 1,430
13년 전 조회 2,049
13년 전 조회 1,596
13년 전 조회 1,464
13년 전 조회 1,707
13년 전 조회 3,274
13년 전 조회 1,879
13년 전 조회 2,568
13년 전 조회 1,473
13년 전 조회 1,508
13년 전 조회 1,758
13년 전 조회 1,481
13년 전 조회 2,400
13년 전 조회 1,402
13년 전 조회 1,461
13년 전 조회 1,756
13년 전 조회 1,566
13년 전 조회 1,462
13년 전 조회 1,586
13년 전 조회 1,607
13년 전 조회 1,487
13년 전 조회 3,297
13년 전 조회 2,433
13년 전 조회 2,292
13년 전 조회 1,502
13년 전 조회 1,458
13년 전 조회 1,561
13년 전 조회 1,765
13년 전 조회 1,559
13년 전 조회 2,123
13년 전 조회 2,207
13년 전 조회 1,795
13년 전 조회 1,944
13년 전 조회 2,995
13년 전 조회 3,313
13년 전 조회 6,598
13년 전 조회 1,495
13년 전 조회 1,949
13년 전 조회 1,495
13년 전 조회 1,776
13년 전 조회 2,397
13년 전 조회 1,989
13년 전 조회 1,641
13년 전 조회 1,723
13년 전 조회 1,554
13년 전 조회 1,705
13년 전 조회 2,667
13년 전 조회 2,967
13년 전 조회 1,834
13년 전 조회 2,076
13년 전 조회 3,177
13년 전 조회 2,133
13년 전 조회 2,122
13년 전 조회 1,782
13년 전 조회 3,232
13년 전 조회 1,812
13년 전 조회 1,965