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,605
13년 전 조회 2,376
13년 전 조회 1,474
13년 전 조회 1,656
13년 전 조회 1,491
13년 전 조회 1,681
13년 전 조회 1,538
13년 전 조회 1,874
13년 전 조회 1,909
13년 전 조회 1,819
13년 전 조회 3,649
13년 전 조회 1,459
13년 전 조회 1,691
13년 전 조회 1,555
13년 전 조회 2,038
13년 전 조회 1,803
13년 전 조회 2,447
13년 전 조회 2,799
13년 전 조회 2,128
13년 전 조회 4,041
13년 전 조회 2,294
13년 전 조회 1,633
13년 전 조회 3,085
13년 전 조회 3,498
13년 전 조회 1,362
13년 전 조회 1,487
13년 전 조회 1,421
13년 전 조회 1,518
13년 전 조회 1,414
13년 전 조회 1,682
13년 전 조회 2,908
13년 전 조회 1,374
13년 전 조회 1,348
13년 전 조회 1,475
13년 전 조회 1,472
13년 전 조회 1,374
13년 전 조회 1,672
13년 전 조회 1,623
13년 전 조회 1,361
13년 전 조회 1,395
13년 전 조회 2,394
13년 전 조회 1,583
13년 전 조회 1,959
13년 전 조회 1,305
13년 전 조회 1,921
13년 전 조회 1,478
13년 전 조회 1,336
13년 전 조회 1,594
13년 전 조회 3,141
13년 전 조회 1,753
13년 전 조회 2,454
13년 전 조회 1,359
13년 전 조회 1,382
13년 전 조회 1,643
13년 전 조회 1,353
13년 전 조회 2,266
13년 전 조회 1,292
13년 전 조회 1,342
13년 전 조회 1,656
13년 전 조회 1,449
13년 전 조회 1,349
13년 전 조회 1,484
13년 전 조회 1,497
13년 전 조회 1,376
13년 전 조회 3,189
13년 전 조회 2,312
13년 전 조회 2,188
13년 전 조회 1,392
13년 전 조회 1,355
13년 전 조회 1,439
13년 전 조회 1,643
13년 전 조회 1,446
13년 전 조회 2,005
13년 전 조회 2,087
13년 전 조회 1,680
13년 전 조회 1,818
13년 전 조회 2,863
13년 전 조회 3,179
13년 전 조회 6,474
13년 전 조회 1,369
13년 전 조회 1,833
13년 전 조회 1,383
13년 전 조회 1,672
13년 전 조회 2,270
13년 전 조회 1,874
13년 전 조회 1,502
13년 전 조회 1,605
13년 전 조회 1,422
13년 전 조회 1,584
13년 전 조회 2,538
13년 전 조회 2,819
13년 전 조회 1,691
13년 전 조회 1,939
13년 전 조회 3,036
13년 전 조회 2,013
13년 전 조회 2,001
13년 전 조회 1,657
13년 전 조회 3,075
13년 전 조회 1,676
13년 전 조회 1,819