我有一个生成 .vcf 文件的 php 脚本,该文件在我的笔记本电脑上打开,我可以作为联系人导入。在我的 windows phone 8 上,该卡下载但无法打开。
我的 PHP 使用以下标头
header("Content-type: text/vcard");
header("Content-disposition: attachment; filename=$filename");
这是生成文件的示例
BEGIN:VCARD
VERSION:2.1
FN:Joe Bloggs
N:Bloggs;Joe
ADR;WORK:;;test;test;test;
EMAIL:test@test.com
URL;WORK:http://test.com
TEL;type=WORK:123456789
TEL;type=CELL:123456789
REV:2013-07-26T17:59:29Z
END:VCARD
格式看起来正确吗?
问候