vCard 通过 php 传播来自 dB 的信息
好吧,就像一个笨蛋一样,我认为这很容易。
我们有一个弹出窗口,其中包含客户详细信息,看起来像 vCard(但风格很重),所有这些都通过我们的数据库动态传播。
所以我只是想是的,不用担心,我们可以在 vcard 中使用 php,并解析相关信息..以便 wneh 用户单击 d/l 链接,他们会获得正确的 vCard 详细信息..
嗯,不,查找有关 vCard 等的信息是难的。
所以这里是 vcard.vcf 示例 TEL 的片段
BEGIN:VCARD
VERSION:2.1
N;LANGUAGE=en-in:Name;Type;Your
FN:Type Your Name
TEL;WORK;VOICE:+1 (800) 123 4567
在我们的 php 中呈现,如下所示:
那么我们如何在 vcard 中获取 php使其可用......任何提示表示赞赏。
Ok like a plonker I thought it would be easy as.
We have a popup with clients details in, to look like a vCard ( but heavily styled ) all propagated via our db on the fly.
So I just thought yeah no worries, we can use php within the vcard, and parse the relevant info .. so that wneh user clicks d/l link they get the correct vCard details..
Hmmm nope, and finding info about vCards etc is hard.
So here is a snippet of the vcard.vcf
BEGIN:VCARD
VERSION:2.1
N;LANGUAGE=en-in:Name;Type;Your
FN:Type Your Name
TEL;WORK;VOICE:+1 (800) 123 4567
Example TEL is rendered in our php like: <?=$r['tel'];?>
So how do we get php within the vcard to make it useable.. any hints appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下是包含一个人的信息的 VCard 文件示例:
vCard 2.1:
vCard 3.0:
将所有数据放入共振峰后,您可以使用字符串变量:
如果您愿意,您也可以创建该文件并关闭指向该文件的链接:
我希望这能让您走上正轨,并且我已经正确理解了您的问题。
答案:
以上代码将允许用户下载 $vCard 中保存的 vCard。在您的情况下,您需要添加自己的数据,如下所示:
The following is an example of a VCard file containing information for one person:
vCard 2.1:
vCard 3.0:
Once you have all your data in a formant you can use say a string variable :
You can also if you wish create the file and off a link to that:
I hope this puts you on track and that I have understood your question correctly.
ANSWER:
The above code will allow the user to to download the vCard held in $vCard. In your case you would need to add your own data an example of how this would go is shown below: