有没有 php CalDav 客户端库?
我使用 Chandler Cosmo 或 DAViCal Calendar Server 安装自己的 CalDav Server。我想使用 php 作为 CalDAV 客户端。但我在java中看不到像caldav4j这样的php库。
有没有人有推荐的图书馆或有一些建议以其他方式做到这一点?
I install my own CalDav Server using Chandler Cosmo or DAViCal Calendar Server. I wanna use php as a CalDAV Client. But I cannot see a php library like a caldav4j in java.
Does anyone have a recommended library or have some advice to do this in the other way ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
DAViCal 包括 inc/caldav-client-v2.php,它提供了一个有用的 PHP 方法库来支持客户端的开发。它还包括 script/sync-remote-caldav.php 中的基本脚本,可用于(例如)通过 CalDAV 将 DAViCal 日历与远程日历同步。
DAViCal 的最新版本还包括允许“外部绑定”的代码,其中看似在 DAViCal 中的日历实际上是外部的。
DAViCal includes inc/caldav-client-v2.php which provides a library of useful PHP methods to enable development of a client. It also includes a basic script in scripts/sync-remote-caldav.php which can be used for (e.g.) synchronising a DAViCal calendar with a remote calendar via CalDAV.
Very recent versions of DAViCal also include code to allow an "external binding" where a calendar which appears to be in DAViCal is actually external.
这就是你吗寻找?它是来自 DAViCal 的 php 类 (
caldav-client.php
),可以连接到 CalDAV 服务器。Is this what you're looking for? It's a php class (
caldav-client.php
) from DAViCal that can connect to a CalDAV server.