个人简介

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
class Profile
{
public $Name = '张少聪';
public $Email = '18611253865@163.com';
public $Sex = '男';
public $Position = 'PHP研发工程师';
public $WorkingLife = '4年'
/**
* 现在所在公司
**/
public function NowCompany()
{
$CompanyName = '北京乐邻里科技有限公司';
$Url = 'www.youzi999.com';
$JobContent = '负责柚子养老网后台研发,以及线上部署'
return true
}
/**
* 上一家公司
**/
public function PrevCompany()
{
$CompanyName = '北京威森联众科技有限公司';
$Url = 'www.mboxone.com/mp/assets/newIndex/index.html';
$JobContent = '负责密友圈社区电商平台的后台开发'
return false
}
}