Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- https
- hybrid
- 페이스북
- Elastic Beanstalk
- ios
- TypeScript
- AWS
- fanzeel
- nextjs
- NeXT
- 안드로이드
- angular
- cors
- JavaScript
- node
- react
- node.js
- S3
- angular4
- swift
- beanstalk
- 감사일기
- 알려줌
- 웹뷰
- php
- 도메인
- 네이티브
- 카카오톡
- Route53
- Android
Archives
- Today
- Total
쪼렙 as! 풀스택
2018. 12. 10. PHP - CodeIgniter 로, RSS 피드해주기. 본문
회사에서 FANZEEL.COM 에 RSS 기능을 개발하라는 명령이 떨어졌다.
fanzeel.com 의 API 서버는 PHP - CodeIgniter 로 되어있다. fanzeel.com/rss 이런주소로 되길 원했기 때문에, Rss 컨트롤러를 하나 만들었다.
public class Rss extends CI_Controller -
header("Content-Type: application/rss+xml");
header('Content-Type: text/xml');
echo '<?xml version="1.0" encoding="UTF-8"?>';
$datas = 'DATA FROM DATABASE'
$now = date("D, d M Y H:i:s T"); // 시간 지정 (현재시간 단위~ )
$this->load->view('rss_v', array('now'=>$now, 'datas'=>$datas));
rss_v.php
<rss version="2.0">
<channel>
<title>채널 제목</title>
<link>https://fanzeel.com</link>
<description>채널 설명글</description>
<language>ko</language>
<pubDate><?=$now?></pubDate>
<managingEditor>이메일 주소</managingEditor>
<?php foreach ($datas as $item): ?>
<?php
$linkUrl = 'https://LINK.URL/ITEM_URL'
?>
<item>
<title><?= htmlentities($item->title) ?></title>
<link><?= $linkUrl ?></link>
<description>
<?= htmlentities('<style type="text/css">img{max-width:100%;}</style>') ?>
<?= htmlentities('<div style="width:100%;">') ?>
<?= htmlentities($item->DESCRIPTION_DETAIL) ?>
<?= htmlentities('</div>') ?>
</description>
<category><?= htmlentities($item->CATEGORY_TITLE) ?></category>
<author><?= htmlentities($item->USER_NAME) ?></author>
<guid><?= $linkUrl ?></guid>
<link><?= $linkUrl ?></link>
<pubDate><?= $item->PUBLISH_DATE ?></pubDate>
</item>
<?php endforeach; ?>
</channel>
</rss>
'개발 일지 > Web & Server' 카테고리의 다른 글
2019. 1.16. 알쥐.net에 초대장 시스템 만들기. (0) | 2019.01.16 |
---|---|
18. 12. 13. PHP - CURL로 파일 저장하기, 압축풀기, 파일을 Text 로 읽기, 텍스트파일을 그대로 렌더링해주기. (0) | 2018.12.14 |
javascript, URL 에서, 쿼리파람 가져오기.. (0) | 2018.11.28 |
PHP, USER_AGENT 분석해서 접속자의 Client, Device 정보 알아오기. (0) | 2018.11.28 |
javascript, Body 위에 Modal 상태를 만들기. (0) | 2018.11.14 |
Comments