Skip to content

Instantly share code, notes, and snippets.

@eddmann
Created February 17, 2014 17:24
Show Gist options
  • Save eddmann/9055023 to your computer and use it in GitHub Desktop.
Save eddmann/9055023 to your computer and use it in GitHub Desktop.
VCF PHP
<?php
$vcard = <<<EOT
BEGIN:VCARD
VERSION:2.1
N:name;Full
FN:Full name
ORG:Company name
TITLE:Job title
END:VCARD
EOT;
$name = 'example.vcf';
header('Content-Type: text/x-vcard; charset=utf-8');
header('Content-Disposition: inline; filename="' . $name . '"');
header('Content-Length: ' . strlen($vcard));
echo $vcard;
exit;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment