使用php读取.pst文件的内容
是否可以以某种方式使用 PHP 读取 .pst 文件的内容?
Is it possible to somehow use PHP to read the contents of a .pst file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以以某种方式使用 PHP 读取 .pst 文件的内容?
Is it possible to somehow use PHP to read the contents of a .pst file?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
有一个独立的程序可以将 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.
将文件夹从 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.