-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvCard.php
More file actions
56 lines (40 loc) · 1.04 KB
/
Copy pathvCard.php
File metadata and controls
56 lines (40 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
/**
* Created by PhpStorm.
* User: Administrator
* Date: 2017/12/8
* Time: 12:05
*/
include "./phpqrcode/qrlib.php";
/*test1*/
//$content = 'BEGIN:VCARD'."\n";
//$content .= 'VERSION:2.1'."\n";
//$content .= 'N:张'."\n";
//$content .= 'FN:三'."\n";
//$content .= 'TEL;TYPE=cell:1376516****'."\n";
//$content .= 'END:VCARD'."\n";
/*
N //姓
FN //名
ORG //公司地址
TEL;WORK;VOICE //工作单位电话
TEL;HOME;VOICE //家里电话
TEL;TYPE=cell //移动电话
ADR;HOME //家庭住址
EMAIL //邮箱
URL //网址
*/
/*test2*/
$content = 'BEGIN:VCARD'."\n";
$content .= 'VERSION:2.1'."\n";
$content .= 'N:朱'."\n";
$content .= 'FN:磊'."\n";
$content .= 'ORG:新月亮网络科技公司'."\n";
$content .= 'TEL;WORK;VOICE:+86 110'."\n";
$content .= 'TEL;HOME;VOICE:+86 119'."\n";
$content .= 'TEL;TYPE=cell:+86 120'."\n";
$content .= 'ADR;HOME:;;海淀区四季青桥110号1单元119号'."\n";
$content .= 'EMAIL:111222333@qq.com'."\n";
$content .= 'URL:http://www.dealmoon.com'."\n";
$content .= 'END:VCARD'."\n";
QRcode::png($content);