我正在动态生成.vcf文件/ vcards。浏览到网址时,以下设置与预期的一样:
mydomain.com/test//lookup.php?id=888
问题是 - android(5.0.2)/ chrome浏览器,它只下载.vcf甚至当我手动尝试添加vcf时,联系人详细信息都没有存储在android手机联系人中
downloadvcf函数如下所示:
public function DownloadVcard() {
header("Content-type: text/directory");
header("Content-Disposition: attachment; filename=" . $this->fileName . ".vcf" . "");
header("Pragma: public");
}
如何解决这个问题?