我的网站上有一项新功能,允许用户获取vcard文件。此功能从我的数据库(这个工作)中读取数据并生成vcard。
文件是:vcard.php,我将用户ID传递为GET
然后我使用该ID获取所有信息
我的问题是当我想要获得vcard时,它显示为文本。这是我的代码的简化版本:
<?php
class Vcard {
public function __construct() {
$this->props = array();
}
public function setName($family, $first) {
$name = $family . ';' . $first . ';';
$this->props['N'] = $name;
if(!isset($this->props['FN'])) {
$display = $first . ' ';
$display .= $family;
$this->props['FN'] = trim($name);
}
}
/* and all the rest of my props */
public function get() {
$text = 'BEGIN:VCARD' . "\r\n";
$text.= 'VERSION:2.1' . "\r\n";
foreach($this->props as $key => $value) {
$text .= $key . ':' . $value . "\r\n";
}
$text.= 'REV:' . date("Y-m-d") . chr(9) . date("H:i:s") . "\r\n";
$text.= 'MAILER:My VCard Generator' . "\r\n";
$text.= 'END:VCARD' . "\r\n";
return $text;
}
}
$v = new Vcard();
$v->setName('Smith', 'John');
echo $v->get();
代码有效,为什么它不能作为vcard?
答案 0 :(得分:18)
给定http://en.wikipedia.org/wiki/VCard
您当然需要在echo $v->get();
header('Content-Type: text/vcard');
告诉客户端浏览器它将收到一个VCard文件。