실시간 트럼프 이슈 코드
페이지 정보

본문
<?php
// 1. 뉴스 가져오기 함수 (중복 방지를 위해 함수명이 겹치지 않게 설정)
function fetch_trump_news_final() {
$url = "https://news.google.com/rss/search?q=%ED%8A%B8%EB%9F%BC%ED%94%84&hl=ko&gl=KR&ceid=KR:ko";
$context = stream_context_create([
"ssl" => ["verify_peer" => false, "verify_peer_name" => false],
"http" => ["header" => "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64)\r\n"]
]);
$content = @file_get_contents($url, false, $context);
if (!$content) return [];
$rss = @simplexml_load_string($content);
if (!$rss) return [];
$list = [];
foreach ($rss->channel->item as $item) {
if (count($list) >= 6) break; // 6개 출력
$list[] = [
'title' => (string)$item->title,
'link' => (string)$item->link,
'date' => date("m.d", strtotime((string)$item->pubDate))
];
}
return $list;
}
$trump_news = fetch_trump_news_final();
?>
<div style="margin-bottom:20px; border:1px solid #ddd; background:#fff; clear:both;">
<div style="padding:10px 15px; background:#f8f9fa; border-bottom:1px solid #eee; display:flex; justify-content:space-between; align-items:center;">
<div style="display:flex; align-items:center; gap:5px;">
<img src="https://fonts.gstatic.com/s/e/notoemoji/latest/1f1fa_1f1f8/512.gif" width="18" height="18" alt="US Flag" style="vertical-align:middle;">
<strong style="font-size:13px; color:#333; margin-left:5px;">실시간 트럼프 이슈</strong>
</div>
<a href="https://news.google.com/search?q=%ED%8A%B8%EB%9F%BC%ED%94%84" target="_blank" style="font-size:11px; color:#999; text-decoration:none;">more</a>
</div>
<div style="margin-bottom:20px; border:1px solid #ddd; background:#fff; clear:both;">
<div style="padding:10px 15px; background:#f8f9fa; border-bottom:1px solid #eee; display:flex; justify-content:space-between; align-items:center;">
<strong style="font-size:13px; color:#333;">
- 이전글LH 공고문 크롤링 python3 26.02.12
- 다음글그누보드 게시글 50줄 이상 작성 25.07.24
댓글목록

세인님의 댓글
세인 아이피 (192.♡.0.1) 작성일
모바일에선 미국 성조기 아이콘이 표시되지만 윈도우에선 US로만 표시됨
이모지 이미지 주소로 변경하면 모든 환경에서 성조기 아이콘으로 보여질듯?
