znanylekarz/ical 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

znanylekarz/ical

最新稳定版本:1.0.0

Composer 安装命令:

composer require znanylekarz/ical

包简介

This package offers PHP-classes to create iCal compatible *.ics files.

README 文档

README

This package offers PHP-classes to create iCal compatible *.ics files.

Usage

1. Create a Calendar object

$vCalendar = new \Eluceo\iCal\Component\Calendar('www.example.com');

2. Create an Event object

$vEvent = new \Eluceo\iCal\Component\Event();

3. Add your information to the Event

$vEvent->setDtStart(new \DateTime('2012-12-24'));
$vEvent->setDtEnd(new \DateTime('2012-12-24'));
$vEvent->setNoTime(true);
$vEvent->setSummary('Christmas');

4. Add Event to Calendar

$vCalendar->addEvent($vEvent);

5. Set HTTP-headers

header('Content-Type: text/calendar; charset=utf-8');
header('Content-Disposition: attachment; filename="cal.ics"');

6. Send output

echo $vCalendar->render();

统计信息

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

GitHub 信息

  • Stars: 1
  • Watchers: 5
  • Forks: 168
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2012-10-24