forked from jxlwqq/id-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstellation.php
More file actions
59 lines (58 loc) · 1.46 KB
/
constellation.php
File metadata and controls
59 lines (58 loc) · 1.46 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
<?php
/**
* 星座信息
*/
return [
'01' => [
'name' => '水瓶座',
'start_date' => '01-20',
'end_date' => '02-18',
],
'02' => [
'name' => '双鱼座',
'start_date' => '02-19',
'end_date' => '03-20',
],
'03' => [
'name' => '白羊座',
'start_date' => '03-21',
'end_date' => '04-19',
],
'04' => [
'name' => '金牛座',
'start_date' => '04-20',
'end_date' => '05-20',
], '05' => [
'name' => '双子座',
'start_date' => '05-21',
'end_date' => '06-21',
], '06' => [
'name' => '巨蟹座',
'start_date' => '06-22',
'end_date' => '07-22',
], '07' => [
'name' => '狮子座',
'start_date' => '07-23',
'end_date' => '08-22',
], '08' => [
'name' => '处女座',
'start_date' => '08-23',
'end_date' => '09-22',
], '09' => [
'name' => '天秤座',
'start_date' => '09-23',
'end_date' => '10-23',
], '10' => [
'name' => '天蝎座',
'start_date' => '10-24',
'end_date' => '11-22',
], '11' => [
'name' => '射手座',
'start_date' => '11-23',
'end_date' => '12-21',
], '12' => [
'name' => '水瓶座',
'start_date' => '12-22',
'end_date' => '01-19',
],
];