Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an existing parser for iCalendar files for PHP? [closed]

Tags:

php

icalendar

I've been searching for an iCalendar parser for PHP, but have been unable to find a complete one. qCal doesn't seem complete. Bennu seems even less so. I've seen a lot of people wanting one, but not much else.

like image 769
Sean Avatar asked Jul 08 '09 03:07

Sean


2 Answers

After an endless search I finally found a good one, with great documentation:

http://www.kigkonsult.se/iCalcreator/

like image 76
mb21 Avatar answered Oct 18 '22 02:10

mb21


sabre-vobject is another (disclaimer: mine). It's been tested in a lot of environments, and provides a natural 'SimpleXML'-like interface to iCalendars and vCards.

http://sabre.io/vobject/

like image 6
Evert Avatar answered Oct 18 '22 01:10

Evert