-
Notifications
You must be signed in to change notification settings - Fork 3
/
BookController.class.php
175 lines (151 loc) · 5.04 KB
/
BookController.class.php
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<?php
namespace Home\Controller;
use Think\Controller;
class BookController extends Controller {
public function index(){
$condition1['book_type'] = '语文';
$condition1['book_grade'] = '一年级';
$bookModel = M('books');
$chinese = $bookModel->where($condition1)->select();
$this->assign('chinese',$chinese);
$this->assign('chineses',$chinese);
$condition2['book_type'] = '数学';
$condition2['book_grade'] = '一年级';
$bookModel = M('books');
$math = $bookModel->where($condition2)->select();
$this->assign('math',$math);
$this->assign('maths',$math);
$condition3['book_type'] = '英语';
$condition3['book_grade'] = '一年级';
$bookModel = M('books');
$english = $bookModel->where($condition3)->select();
$this->assign('english',$english);
$this->assign('englishs',$english);
$this->display();
}
//二年级
public function gradeTwo(){
$condition1['book_type'] = '语文';
$condition1['book_grade'] = '二年级';
$bookModel = M('books');
$chinese = $bookModel->where($condition1)->select();
$this->assign('chinese',$chinese);
$this->assign('chineses',$chinese);
$condition2['book_type'] = '数学';
$condition2['book_grade'] = '二年级';
$bookModel = M('books');
$math = $bookModel->where($condition2)->select();
$this->assign('math',$math);
$this->assign('maths',$math);
$condition3['book_type'] = '英语';
$condition3['book_grade'] = '二年级';
$bookModel = M('books');
$english = $bookModel->where($condition3)->select();
$this->assign('english',$english);
$this->assign('englishs',$english);
$this->display();
}
//三年级
public function gradeThree(){
$condition1['book_type'] = '语文';
$condition1['book_grade'] = '三年级';
$bookModel = M('books');
$chinese = $bookModel->where($condition1)->select();
$this->assign('chinese',$chinese);
$this->assign('chineses',$chinese);
$condition2['book_type'] = '数学';
$condition2['book_grade'] = '三年级';
$bookModel = M('books');
$math = $bookModel->where($condition2)->select();
$this->assign('math',$math);
$this->assign('maths',$math);
$condition3['book_type'] = '英语';
$condition3['book_grade'] = '三年级';
$bookModel = M('books');
$english = $bookModel->where($condition3)->select();
$this->assign('english',$english);
$this->assign('englishs',$english);
$this->display();
}
//四年级
public function gradeFour(){
$condition1['book_type'] = '语文';
$condition1['book_grade'] = '四年级';
$bookModel = M('books');
$chinese = $bookModel->where($condition1)->select();
$this->assign('chinese',$chinese);
$this->assign('chineses',$chinese);
$condition2['book_type'] = '数学';
$condition2['book_grade'] = '四年级';
$bookModel = M('books');
$math = $bookModel->where($condition2)->select();
$this->assign('math',$math);
$this->assign('maths',$math);
$condition3['book_type'] = '英语';
$condition3['book_grade'] = '四年级';
$bookModel = M('books');
$english = $bookModel->where($condition3)->select();
$this->assign('english',$english);
$this->assign('englishs',$english);
$this->display();
}
//五年级
public function gradeFive(){
$condition1['book_type'] = '语文';
$condition1['book_grade'] = '五年级';
$bookModel = M('books');
$chinese = $bookModel->where($condition1)->select();
$this->assign('chinese',$chinese);
$this->assign('chineses',$chinese);
$condition2['book_type'] = '数学';
$condition2['book_grade'] = '五年级';
$bookModel = M('books');
$math = $bookModel->where($condition2)->select();
$this->assign('math',$math);
$this->assign('maths',$math);
$condition3['book_type'] = '英语';
$condition3['book_grade'] = '五年级';
$bookModel = M('books');
$english = $bookModel->where($condition3)->select();
$this->assign('english',$english);
$this->assign('englishs',$english);
$this->display();
}
//六年级
public function gradeSix(){
$condition1['book_type'] = '语文';
$condition1['book_grade'] = '六年级';
$bookModel = M('books');
$chinese = $bookModel->where($condition1)->select();
$this->assign('chinese',$chinese);
$this->assign('chineses',$chinese);
$condition2['book_type'] = '数学';
$condition2['book_grade'] = '六年级';
$bookModel = M('books');
$math = $bookModel->where($condition2)->select();
$this->assign('math',$math);
$this->assign('maths',$math);
$condition3['book_type'] = '英语';
$condition3['book_grade'] = '六年级';
$bookModel = M('books');
$english = $bookModel->where($condition3)->select();
$this->assign('english',$english);
$this->assign('englishs',$english);
$this->display();
}
public function detail(){
$condition['book_id'] = I('id');
$bookModel = M('books');
$book = $bookModel->where($condition)->find();
$array = explode(',', $book['book_img']);//将路径用','分割成数组
for($i=0;$i<count($array);$i++){//删除数组中的空值
if($array[$i] == ''){
unset($array[$i]);
}
}
$count = count($array);
$this->assign('count',$count);
$this->assign('book',$book);
$this->display();
}
}