Skip to content

PubSubHubbub and CDATA support

Compare
Choose a tag to compare
@suin suin released this 21 Jul 14:14
· 15 commits to master since this release

PubSubHubbub

Now PubSubHubbub is available from this version. About PubSubHubbub, see PubSubHubbub - Wikipedia, the free encyclopedia.

$channel = new Channel();
$channel->pubsubhubbub('http://example.com/feed.xml', 'http://pubsubhubbub.appspot.com');

CDATA title and description #16

Now you can specify CDATA encoding on item's <title> and <description>.

$item = new Item();
$item->preferCdata(true);