Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 341 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 341 Bytes

Fastical

A fast PHP ical parser for vevents.

Requirements

  • PHP > 5.5
  • Composer

Setup

  • git submodule init
  • git submodule update
  • In simshaun_recurr do composer install

Usage

Get events from the next 7 days:

$f = new Fastical('events.ics');
print_r($f->getEvents(time(), time() + 7 * 24 * 60 * 60));