Skip to content

ChrisLamprecht/icalparser

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PHP iCal Parser

Build Status Latest Stable Version Total Downloads Latest Unstable Version License

Internet Calendaring Parser rfc2445 or iCal parser is simple PHP 5.6+ class for parsing format into array.

How to install

composer require om/icalparser

Usage

<?php
require_once '../vendor/autoload.php';
$cal = new \om\IcalParser();
$results = $cal->parseFile(
	'https://www.google.com/calendar/ical/cs.czech%23holiday%40group.v.calendar.google.com/public/basic.ics'
);

foreach ($cal->getSortedEvents() as $r) {
	echo sprintf('	<li>%s - %s</li>' . PHP_EOL, $r['DTSTART']->format('j.n.Y'), $r['SUMMARY']);
}

Requirements

  • PHP 5.6+

Run tests

iCal parser using Nette Tester. The tests can be invoked via composer.

composer update
composer tests

TODO

About

This is simple icalendar parser

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • PHP 100.0%