traubisoda / icalendar
使用 PHP 动态生成 iCalendar (*.ics) 文件
v1.0.0
2017-01-05 20:53 UTC
Requires
- php: >=5.4.2
Requires (Dev)
- phpunit/phpunit: ~5.0
This package is not auto-updated.
Last update: 2024-09-28 19:58:08 UTC
README
PHP 简单 iCalendar 事件 (*.ics) 生成器。
用法
<?php require_once 'vendor/autoload.php'; use ICalendar\ICalendar; ... ... ... try { // New calendar instance and setting values $calendar = (new ICalendar()) ->setOrganizer('foo@bar.com') ->setStartDate(new DateTime(...)) ->setEndDate(new DateTime(...)) ->addAttendee('lorem@ipsum.com'); // Get iCalendar echo $calendar->getCalendar(); } catch(\Exception $e) { }
可用方法
检查代码,并无魔法。
测试
vendor/bin/phpunit tests