-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwatermark_list.php
More file actions
51 lines (50 loc) · 1.21 KB
/
watermark_list.php
File metadata and controls
51 lines (50 loc) · 1.21 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
<?php
$cats = [
];
$demo = [
'result' => true,
'total_number' => 100,
'cats' => [
[
'id' => 1,
'name' => '热点',
'cat' => 'hot',
'watermarks' => [
[
'id' => 1,
'name' => '魂之挽歌',
'cover' => 'http://watermark.test.os.qkcorp.net/cover1.jpg',
'sort' => 1000, // desc
],
[
'id' => 2,
'name' => '青春',
'cover' => 'http://watermark.test.os.qkcorp.net/cover2.jpg',
'sort' => 990, // desc
]
]
],
[
'id' => 2,
'name' => '心情',
'cat' => 'xinqing',
],
[
'id' => 3,
'name' => '人像',
'cat' => 'renxiang',
],
[
'id' => 4,
'name' => '地点',
'cat' => 'didian',
],
[
'id' => 5,
'name' => '时间',
'cat' => 'shijian',
],
]
];
header('Content-Type: application/json; charset=utf-8');
echo json_encode($demo);