실시간 트럼프 이슈 코드 > 그누보드

본문 바로가기


사이트 내 전체검색 (구글)

그누보드

실시간 트럼프 이슈 코드

페이지 정보

profile_image
작성자 세인 (192.♡.0.1)
댓글 1건 조회 4회 작성일 26-01-09 21:23

본문

<?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;">

댓글목록

profile_image

세인님의 댓글

세인 아이피 (192.♡.0.1) 작성일

모바일에선 미국 성조기 아이콘이 표시되지만 윈도우에선 US로만 표시됨
이모지 이미지 주소로 변경하면 모든 환경에서 성조기 아이콘으로 보여질듯?


회사소개 개인정보취급방침 서비스이용약관 상단으로

contact.https://open.kakao.com/o/s20mpzke
discord.https://discord.gg/rEcZHwBuAh
웹마스터:공세인 개인정보관리책임자:공세인

Copyright © quail.kr All rights reserved.