MemInfoController.class.php
1.48 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
57
58
59
60
61
62
63
64
65
66
67
<?php
/**
* 获取人员详情接口
*
*/
namespace Apicp\Controller\Contact;
class MemInfoController extends AbstractController
{
public function Index()
{
return $this->_result = array();
}
public function Test()
{
// 返回值
$result = $this->result();
return $this->_result = $result;
}
public function result()
{
// 构造返回值
$result = array(
'memUid' => "72A15BAE7F0000016C05A24F4D27CF2B",
'memWeixin' => "raftyyang",
'memUserid' => "2ed2ee9234efd43632275f22e65802d7",
'memMobile' => "18018609007",
'memEmail' => "30916407@qq.com",
'memActive' => 0,
'memUsername' => "杨娴",
'memNum' => 0,
'memAdmincp' => 0,
'memGroupid' => 0,
'memGender' => 2,
'memFace' => "",
'memDisplayorder' => 0,
'memSubscribeStatus' => 1,
'mfAddress' => "山西省绛县",
'mfIdcard' => "610124198911064514",
'mfTelephone' => "02198751241",
'mfQq' => "271461421",
'mfBirthday' => "1989-11-06",
'mfRemark' => "备注",
'mfExt1' => "",
'mfExt2' => "",
'mfExt3' => "",
'mfExt4' => "",
'mfExt5' => "",
'mfExt6' => "",
'mfExt7' => "",
'mfExt8' => "",
);
return $result;
}
}