承接 miax/crssfeed 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

miax/crssfeed

最新稳定版本:v0.3

Composer 安装命令:

composer require miax/crssfeed

包简介

PHP class for implementing a RSS feed

README 文档

README

Build Status Scrutinizer Code Quality Code Coverage

CRSSFeed

PHP module class to get content of one or more RSS feeds. This repository also contains SimplePie.

Installation

To implement crssfeed on your site, get a copy of this repository using git clone or download it to your desktop.

Make sure you have a path for the cache available at the defined location, if you do not want the feed to download new information on each request. Using a cache is better for your system performance. You can adjust this path in the module file, CRSSFeed.php.

Initialize a new instance of the module, sending in a adress to a RSS-feed to the constructor, and a duration for the cache if you like.

Next, echo the method getFeed() on the object to display the feed.

Example:

$feed = new CRSSFeed(
[
"http://addresstofeed.com/rss",
"http://addresstoanotherfeed.com/rss"
]
);
echo $feed->getFeed();

Licence

This software is free software and carries a MIT license. Any included external modules are subject to their own licensing.

History

v0.1.0 (first version)

Base functionality.

Copyright (c) Mia Raunegger, 2015, mia@design4u2.se

统计信息

  • 总下载量: 16
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-10-14