我在PHP 5和MySQL中建立了一个站点,该站点具有用于跟踪计划的照片拍摄的表格。我想将这些计划的“事件”的提要推送到ical文件中。
我最初是asked this question,并从S. Gehrig得到了很好的答案。我得到了一个可操作的示例ical文件,并且每当我在Dreamweaver中手动调整该文件时,便会定期在Google日历中进行更新。但是,既然我已经添加了从数据库中提取动态PHP的功能,它将无法正常工作。
这是PHP:
<?php
require_once('../../_includes/initialize.php');
$ical = " BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//hacksw/handcal//NONSGML v1.0//EN ";
$slots = Slot::find_all();
foreach($slots as $slot) {
$job = Job::find_by_id($slot->job_id);
$start_stamp = strtotime($slot->start);
$end_stamp = strtotime($slot->endtime);
$dtstart = gmdate('Ymd', $start_stamp).'T'. gmdate('His', $start_stamp) . "Z"; // converts to UTC time
$dtend = gmdate('Ymd', $end_stamp).'T'. gmdate('His', $end_stamp) . "Z"; // converts to UTC time
$summary = $job->title;
$ical .= " BEGIN:VEVENT
UID:" . $slot->id . "@homewoodphoto.jhu.edu
DTSTAMP:" . gmdate('Ymd').'T'. gmdate('His') . "Z
DTSTART:" . $dtstart . "
DTEND:" . $dtend . "
SUMMARY:" . $summary . "
END:VEVENT ";
}
$ical .= " END:VCALENDAR";
//set correct content-type-header
header('Content-type: text/calendar; charset=utf-8');
header('Content-Disposition: inline; filename=homewoodphoto_master.ics');
echo $ical;
exit;
?>
据我所知,此文件的输出与我正在使用的手动硬编码版本完全相同。谁能看到为什么这不起作用????
PS这是正在运行的文件的代码-我刚刚将其发布在服务器上,并通过Google日历中的URL进行了订阅。当我在第二次事件中进行硬编码时,它很快就独立显示在Google日历中。
<?php
$ical = "BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//hacksw/handcal//NONSGML v1.0//EN
BEGIN:VEVENT
UID:" . md5(uniqid(mt_rand(), true)); . "@yourhost.test
DTSTAMP:" . gmdate('Ymd').'T'. gmdate('His') . "Z
DTSTART:20090925T170000Z
DTEND:20090928T035959Z
SUMMARY:Bastille Day Party
END:VEVENT
BEGIN:VEVENT
UID:" . md5(uniqid(mt_rand(), true)); . "@yourhost.test
DTSTAMP:" . gmdate('Ymd').'T'. gmdate('His') . "Z
DTSTART:20090929T170000Z
DTEND:20090930T035959Z
SUMMARY:Camping Trip
END:VEVENT
END:VCALENDAR";
//set correct content-type-header
header('Content-type: text/calendar; charset=utf-8');
header('Content-Disposition: inline; filename=calendar.ics');
echo $ical;
exit;
?>
帮助!
一个评论者建议我通过删除 header 并回显$ ical var进行测试。这是该测试的结果,为方便起见添加了换行符:
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//hacksw/handcal//NONSGML v1.0//EN
BEGIN:VEVENT
UID:[email protected]
DTSTAMP:20090929T212141Z
DTSTART:20091001T230000Z
DTEND:20091001T230000Z
SUMMARY:little title
END:VEVENT
BEGIN:VEVENT
UID:[email protected]
DTSTAMP:20090929T212141Z
DTSTART:20090926T230000Z
DTEND:20090927T010000Z
SUMMARY:A big photo shoot
END:VEVENT
BEGIN:VEVENT
UID:[email protected]
DTSTAMP:20090929T212141Z
DTSTART:20091003T230000Z
DTEND:20091004T010000Z
SUMMARY:A big photo shoot
END:VEVENT
END:VCALENDAR
谢谢!
最佳答案
对于通过搜索偶然发现此问题的人们,可能不清楚如何解决该问题。基本上,iCal规范要求换行符\r\n,并且在行首没有空格,这是脚本中为了使其起作用而修复的问题。
使用ical时,我发现以下3个验证器最有帮助:
最基本的(缺少空格):http://severinghaus.org/projects/icv/?url=
这将捕获空格:http://icalvalid.cloudapp.net/Default.aspx
这个会抓到别人没有的东西,但是太严格了:http://arnout.engelen.eu/icalendar-validator
此外,有关所有不同元素的最佳文档:http://www.kanzaki.com/docs/ical/
关于php - 从数据库创建的动态文档不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1494959/