gpt4 book ai didi

php vcard 显示为纯文本

转载 作者:IT王子 更新时间:2023-10-28 23:53:53 27 4
gpt4 key购买 nike

我的网站上有一项新功能,允许用户获取 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 获取?

最佳答案

给定http://en.wikipedia.org/wiki/VCard

你当然需要在 echo $v->get(); 之前添加下面这行

header('Content-Type: text/vcard');

为了告诉客户端的浏览器它将收到一个 VCard 文件。

关于php vcard 显示为纯文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8688671/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com