有人可以推荐一个脚本/一些代码来获取iCalendar日历文件并以纯文本形式输出当天的事件吗?
当前代码
<?php
/**
* This example demonstrates how the Ics-Parser should be used.
*
* PHP Version 5
*
* @category Example
* @package Ics-parser
* @author Martin Thoma <info@martin-thoma.de>
* @license http://www.opensource.org/licenses/mit-license.php MIT License
* @version SVN: <svn_id>
* @link http://code.google.com/p/ics-parser/
* @example $ical = new ical('MyCal.ics');
* print_r( $ical->get_event_array() );
*/
require 'class.iCalReader.php';
$ical = new ICal('THE URL');
$events = $ical->events();
$date = $events[0]['DTSTART'];
foreach ($events as $event) {
echo "".$event['SUMMARY']."<br/>";
}
?>
<style>
body
{
font-family: Segan;
}
</style>
答案 0 :(得分:3)
您需要阅读还是写作? 我过去用的读物:
http://sevengoslings.net/icalendar
和
http://www.phpclasses.org/browse/file/16660.html
http://sourceforge.net/projects/phpicalendar/ - &lt;我相信这个也可以读,但它很大 - 你可能只是从那里拿一两个函数
但是 - 我通过你的问题理解你需要阅读 - iCalender是纯文本。 您只需要打开文件并逐行绘制。
<?php
$data = file_get_contents("myfile.ics"); //read the file
$convert = explode("\n", $data); //create array separate by new line
for ($i=0;$i<count($convert);$i++)
{
echo $convert[$i].', '; //write value by index
}
?>
然后使用正则表达式或其他东西为标记赋予人类可重复的格式..
编辑I:
我刚刚找到了一个我之前使用过的函数: 它使用此类:http://www.kigkonsult.se/iCalcreator/index.php 它不是我写的,但它在过去对我有用。 我不记得这个功能的来源 - 如果我发现它我将发布..
<?php
require_once 'iCalcreator/iCalcreator.class.php';
$filename = 'D:\Document\Docs\2007\05\iCal-20070508-082112.ics';
$v = new vcalendar(); // initiate new CALENDAR
$v->parse($filename);
# get first vevent
$comp = $v->getComponent("VEVENT");
#print_r($comp);
$summary_array = $comp->getProperty("summary", 1, TRUE);
echo "summary: ", $summary_array["value"], "\n";
$dtstart_array = $comp->getProperty("dtstart", 1, TRUE);
$dtstart = $dtstart_array["value"];
$startDate = "{$dtstart["year"]}-{$dtstart["month"]}-{$dtstart["day"]}";
$startTime = "{$dtstart["hour"]}:{$dtstart["min"]}:{$dtstart["sec"]}";
$dtend_array = $comp->getProperty("dtend", 1, TRUE);
$dtend = $dtend_array["value"];
$endDate = "{$dtend["year"]}-{$dtend["month"]}-{$dtend["day"]}";
$endTime = "{$dtend["hour"]}:{$dtend["min"]}:{$dtend["sec"]}";
echo "start: ", $startDate,"T",$startTime, "\n";
echo "end: ", $endDate,"T",$endTime, "\n";
?>
答案 1 :(得分:2)
我建议ICS-Parser。
它很好地将ICS转换为一个阵列,你可以循环并打印你喜欢的方式,例如在他们的网站上。