<?php
|
|
|
|
// Load test target classes
|
|
spl_autoload_register(function ($c) {
|
|
@include_once strtr($c, '\\_', '//') . '.php';
|
|
});
|
|
set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__DIR__) . '/src');
|
|
|
|
use Suin\RSSWriter\Channel;
|
|
use Suin\RSSWriter\Feed;
|
|
use Suin\RSSWriter\Item;
|
|
|
|
$feed = new Feed();
|
|
|
|
$channel = new Channel();
|
|
$channel
|
|
->title("Channel Title")
|
|
->description("Channel Description")
|
|
->url('http://blog.example.com')
|
|
->language('en-US')
|
|
->copyright('Copyright 2012, Foo Bar')
|
|
->pubDate(strtotime('Tue, 21 Aug 2012 19:50:37 +0900'))
|
|
->lastBuildDate(strtotime('Tue, 21 Aug 2012 19:50:37 +0900'))
|
|
->ttl(60)
|
|
->appendTo($feed);
|
|
|
|
$item = new Item();
|
|
$item
|
|
->title("Blog Entry Title")
|
|
->description("<div>Blog body</div>")
|
|
->url('http://blog.example.com/2012/08/21/blog-entry/')
|
|
->pubDate(strtotime('Tue, 21 Aug 2012 19:50:37 +0900'))
|
|
->guid('http://blog.example.com/2012/08/21/blog-entry/', true)
|
|
->appendTo($channel);
|
|
|
|
|
|
echo $feed; // or echo $feed->render();
|