How to download a .vcf file correctly

て烟熏妆下的殇ゞ 提交于 2020-01-02 04:17:07

问题


I'd like to know, how can I realise a Vcard download. That's my current code:

$path = "../../media/resources/";  
$file = "someName.vcf";  

header('Content-Type: text/x-vCard');  
header('Content-Disposition: attachment; filename= "'.$file.'"');  
header('Content-Length: '.filesize($path.$file));  
header('Connection: close');  

readfile($path.$file);

Unfortunately, it does only give out the content from the .vcf file. How can I give this vcard to the user as a download?


回答1:


You have header('Connection: close'); which I would imagine closes the connection before the contents of the file are read. I've removed the line.

I'm not sure about case sensitivity in content-type so I changed it to x-vcard and I changed the content-disposition to inline (a known fix for download issues with IE). Try this:

$path = "../../media/resources/";  
$file = "Toni_Junas.vcf";  

header('Content-Type: text/x-vcard');  
header('Content-Disposition: inline; filename= "'.$file.'"');  
header('Content-Length: '.filesize($path.$file));  

readfile($path.$file);

Also, make sure the directory "resources" is readable (chmod 755 on the directory) and that the file exists...




回答2:


put exit()

readfile($path.$file);
exit();


来源:https://stackoverflow.com/questions/4461968/how-to-download-a-vcf-file-correctly

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!