使用php读取.pst文件的内容

发布于 2024-09-09 07:26:01 字数 37 浏览 5 评论 0原文

是否可以以某种方式使用 PHP 读取 .pst 文件的内容?

Is it possible to somehow use PHP to read the contents of a .pst file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

↙厌世 2024-09-16 07:26:01

有一个独立的程序可以将 PST 转换为其他格式(然后可以使用 PHP 扩展读取,例如 php_imap): http://www. Five-ten-sg.com/libpst/

但是,由于 Microsoft 不断更改 PST 格式,因此不能保证您能够转换所有 PST 文件。

There's a standalone program to convert PST to other formats (which may be then readable using PHP extensions, e.g. php_imap): http://www.five-ten-sg.com/libpst/

However, as Microsoft keeps changing the PST format, it's not guaranteed that you'll be able to convert all PST files.

不即不离 2024-09-16 07:26:01

将文件夹从 MS Outlook(文件 -> 打开 -> 导入 -> 导出到文件)导出为纯文本 CSV,可以轻松解析,例如通过 fgetcsv 函数。 libpst 仅在 Linux (RPM) 上受支持。

PST 文件格式很复杂用 PHP 解析它将是一项艰巨的工作。

Exporting folders from MS Outlook (FILE -> OPEN -> IMPORT -> EXPORT TO A FILE) into plain text CSV enables easy parsing e.g. via fgetcsv function. The libpst is only supported on linux (RPM).

Format of PST file is complex and parsing it with PHP would be a tremendous job.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文