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")
);
"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); }
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();
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")
)
);
}
}
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);
}
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";
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>";
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 "<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개
영리한바부
13년 전
이미 처리 하셨는지 모르겠는데 혹시 해결하지 못하셨다면
참고 해서 수정해보십시요
// 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
참고 해서 수정해보십시요
// 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
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 4630 | 13년 전 | 1189 | ||
| 4629 | 13년 전 | 4362 | ||
| 4628 | 13년 전 | 766 | ||
| 4627 |
|
13년 전 | 1756 | |
| 4626 | 13년 전 | 810 | ||
| 4625 |
마릴릴모니
|
13년 전 | 725 | |
| 4624 | 13년 전 | 1635 | ||
| 4623 |
SIR정회원
|
13년 전 | 607 | |
| 4622 |
rakoos
|
13년 전 | 1573 | |
| 4621 | 13년 전 | 680 | ||
| 4620 | 13년 전 | 1467 | ||
| 4619 | 13년 전 | 997 | ||
| 4618 | 13년 전 | 4044 | ||
| 4617 | 13년 전 | 2034 | ||
| 4616 | 13년 전 | 857 | ||
| 4615 | 13년 전 | 680 | ||
| 4614 | 13년 전 | 1247 | ||
| 4613 | 13년 전 | 887 | ||
| 4612 |
rakoos
|
13년 전 | 1022 | |
| 4611 |
|
13년 전 | 2114 | |
| 4610 | 13년 전 | 769 | ||
| 4609 | 13년 전 | 2822 | ||
| 4608 | 13년 전 | 2805 | ||
| 4607 | 13년 전 | 1076 | ||
| 4606 | 13년 전 | 773 | ||
| 4605 | 13년 전 | 2316 | ||
| 4604 | 13년 전 | 890 | ||
| 4603 | 13년 전 | 1141 | ||
| 4602 |
한번잘해보자
|
13년 전 | 680 | |
| 4601 | 13년 전 | 1804 | ||
| 4600 |
|
13년 전 | 1089 | |
| 4599 |
크라운엠버서더
|
13년 전 | 1153 | |
| 4598 | 13년 전 | 1503 | ||
| 4597 | 13년 전 | 598 | ||
| 4596 | 13년 전 | 3685 | ||
| 4595 |
|
13년 전 | 912 | |
| 4594 | 13년 전 | 1790 | ||
| 4593 | 13년 전 | 1283 | ||
| 4592 | 13년 전 | 658 | ||
| 4591 | 13년 전 | 4646 | ||
| 4590 | 13년 전 | 518 | ||
| 4589 | 13년 전 | 2636 | ||
| 4588 |
|
13년 전 | 995 | |
| 4587 | 13년 전 | 657 | ||
| 4586 |
JavaDD
|
13년 전 | 1015 | |
| 4585 | 13년 전 | 7783 | ||
| 4584 | 13년 전 | 976 | ||
| 4583 |
PHPㅡASP프로그래머
|
13년 전 | 2062 | |
| 4582 |
PHPㅡASP프로그래머
|
13년 전 | 1499 | |
| 4581 |
PHPㅡASP프로그래머
|
13년 전 | 1021 | |
| 4580 | 13년 전 | 4091 | ||
| 4579 |
|
13년 전 | 691 | |
| 4578 | 13년 전 | 1191 | ||
| 4577 | 13년 전 | 815 | ||
| 4576 |
Kanzi
|
13년 전 | 870 | |
| 4575 |
|
13년 전 | 1556 | |
| 4574 | 13년 전 | 2345 | ||
| 4573 |
달빛소나타
|
13년 전 | 876 | |
| 4572 | 13년 전 | 994 | ||
| 4571 | 13년 전 | 939 | ||
| 4570 |
|
13년 전 | 1309 | |
| 4569 |
한번잘해보자
|
13년 전 | 559 | |
| 4568 |
Raizond
|
13년 전 | 1028 | |
| 4567 |
Raizond
|
13년 전 | 535 | |
| 4566 |
Revenge
|
13년 전 | 949 | |
| 4565 |
|
13년 전 | 707 | |
| 4564 |
|
13년 전 | 1142 | |
| 4563 | 13년 전 | 1572 | ||
| 4562 | 13년 전 | 1223 | ||
| 4561 | 13년 전 | 9403 | ||
| 4560 | 13년 전 | 1806 | ||
| 4559 | 13년 전 | 3360 | ||
| 4558 | 13년 전 | 475 | ||
| 4557 | 13년 전 | 1452 | ||
| 4556 | 13년 전 | 710 | ||
| 4555 | 13년 전 | 553 | ||
| 4554 | 13년 전 | 545 | ||
| 4553 |
|
13년 전 | 4312 | |
| 4552 | 13년 전 | 1511 | ||
| 4551 | 13년 전 | 1994 | ||
| 4550 | 13년 전 | 683 | ||
| 4549 | 13년 전 | 1038 | ||
| 4548 | 13년 전 | 1577 | ||
| 4547 | 13년 전 | 559 | ||
| 4546 | 13년 전 | 1619 | ||
| 4545 | 13년 전 | 1336 | ||
| 4544 | 13년 전 | 3029 | ||
| 4543 | 13년 전 | 1012 | ||
| 4542 | 13년 전 | 2267 | ||
| 4541 | 13년 전 | 1140 | ||
| 4540 |
|
13년 전 | 1061 | |
| 4539 | 13년 전 | 1159 | ||
| 4538 | 13년 전 | 1591 | ||
| 4537 | 13년 전 | 1173 | ||
| 4536 | 13년 전 | 554 | ||
| 4535 |
|
13년 전 | 827 | |
| 4534 |
|
13년 전 | 982 | |
| 4533 | 13년 전 | 653 | ||
| 4532 |
soing
|
13년 전 | 7377 | |
| 4531 |
|
13년 전 | 6399 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기