C:\xampp\htdocs\kptv\common\database.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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<?php 

    
class Database {
    
        private 
$host;
        private 
$db;
        private 
$user;
        private 
$password;
    
        private 
$handler;
    
        function 
__construct($host$db$user$password) {
            
$this->host     $host;
            
$this->db         $db;
            
$this->user        $user;
            
$this->password $password;
            
            
$this->connect();
            
$this->selectDB();
        }
    
        private function 
connect(){
            
$this->handler mysql_connect($this->host$this->user$this->password);
        }
    
        private function 
selectDB(){
            
mysql_select_db($this->db$this->handler);
            
mysql_set_charset("utf-8");
        }
    
        public function 
query($sql){
            
$query mysql_query($sql) or die(mysql_error());            
            return 
$query;
        }
    
        private function 
resultArray($query) {
            
$result = array();
        
            if(
mysql_num_rows($query) > 0){
                while(
$r mysql_fetch_assoc($query)){
                    
$result[] = $r;
                }
            }
            
            return 
$result;
        }
    
        private function 
rowArray($query){
            
$result mysql_fetch_assoc($query);
            return 
$result;
        }
    
        private function 
affectedRows(){
            return 
mysql_affected_rows();
        }
    
        private function 
insertId(){
            return 
mysql_insert_id();
        }
    
        function 
endsWith($haystack$needle) {
            return 
$needle === "" || strpos($haystack$needlestrlen($haystack) - strlen($needle)) !== FALSE;
        }
    
        function 
startsWith($haystack$needle) {
            return 
$needle === "" || strrpos($haystack$needle, -strlen($haystack)) !== FALSE;
        }
    
        public function 
select($table ""$ids "") {
            if (
$table != "") {
                
$sql "";
                            
                if( 
$ids == "" ) {
                    
$sql "SELECT * FROM " $table;
                } else {
                    if(
$this->endsWith($ids,",")) {
                        
$ids substr($ids0strlen($ids) - 1);
                    }
                    
$sql "SELECT * FROM " $table " WHERE id IN (".$ids.")";
                }
                
                
$query $this->query($sql);
                
$result $this->resultArray($query);

                return 
$result;
            }
        }

        public function 
selectIdx($table ""$keyName ""$id 0) {
            if (
$table != "" && $keyName != "" && $id != 0) {
                
$sql "SELECT * FROM " $table " WHERE ".$keyName." = '".mysql_real_escape_string($id)."'";

                
$query $this->query($sql);
                
$result $this->resultArray($query);

                return 
$result;
            }
        }
        
        public function 
selectById($table ""$id 0) {
            if (
$table != "" && $id != 0) {
                
$sql "SELECT * FROM " $table " "
                        
"WHERE ID = '" mysql_real_escape_string($id) . "'";

                
$query $this->query($sql);
                
$db_row $this->rowArray($query);
            }

            return 
$db_row;
        }
        
        public function 
selectByConditions($table ""$conditions = array(), $other "") {
            
$i 0;
            if (
$table != "") {
                
$sql "";
                
$sql "SELECT * FROM " $table;
                
                if(
$conditions != array()) {
                    
$wherePart " WHERE ";
                    foreach (
$conditions as $key => $value) {                    
                        
$wherePart .= " " $key " = '" mysql_real_escape_string($value) . "'";
                        if (
$i count($conditions) - 1) {
                            
$wherePart .= " AND ";
                        }
                        
$i++;
                    }
                    
                    if(
$this->endsWith(trim($wherePart), ",")) {
                        
$wherePart substr(trim($wherePart), 0strlen(trim($wherePart)) - 1);
                    }
                    
                    
$sql .= $wherePart;
                }
                
                
$sql .= " ".$other;
                
                
$query $this->query($sql);
                
$result $this->resultArray($query);
                    
                return 
$result
            }
        }
        
        public function 
deleteById($table ""$id 0) {
            if (!empty(
$table) && $id 0) {
                
$sql "DELETE FROM " $table " "
                        
"WHERE id = '" mysql_real_escape_string($id) . "'";

                
$this->query($sql);

                if (
$this->affectedRows()) {
                    return 
TRUE;
                }
            }
            return 
FALSE;
        }

        public function 
delteIdx($table ""$columnName$id 0) {
            if( !empty(
$table) && $id ) {
                
$sql "DELETE FROM ".$table." "
                     
"WHERE ".$columnName." = '".mysql_real_escape_string($id)."'";
                
                
$this->query($sql);
                
                if(
$this->affectedRows()) {
                    return 
TRUE;
                }
            }
            return 
FALSE;
        }
        
        public function 
insert($table ""$data = array(), $ignore = array()) {
            if (
$table != "" && $data != array()) {
                
$i 0;
                
$setPart " SET ";
                foreach (
$data as $key => $value) {
                    if(!
in_array($key$ignore)) {
                        if(
$this->startsWith($key"Date_")) {
                            
$key substr($key5strlen($key) - 5);
                        }
                        
                        
$setPart .= " " $key " = '" mysql_real_escape_string($value) . "'";
                        if (
$i count($data) - 1) {
                            
$setPart .= ", ";
                        }
                    }
                    
$i++;
                }
                
                if(
$this->endsWith(trim($sql), ",")) {
                    
$sql substr(trim($sql), 0strlen(trim($sql)) - 1);
                }
                
                
$sql "INSERT INTO " $table $setPart "";
                
                if (
$this->query($sql)) {
                    return 
$this->insertId();
                }
                return 
FALSE;
            }
        }

        public function 
update($table ""$data = array(), $id 0$ignore = array()) {        
            if (
$table != "" && $data != array()) {
                
$i 0;
                
$setPart " SET ";
                foreach (
$data as $key => $value) {
                    if(!
in_array($key$ignore)) {
                        if(
$this->startsWith($key"Date_")) {
                            
$key substr($key5strlen($key) - 5);
                        }
                        
$setPart .= " " $key " = '" mysql_real_escape_string($value) . "'";
                        if (
$i count($data) - 1) {
                            
$setPart .= ", ";
                        }
                    }
                    
$i++;
                }
                
                if(
$this->endsWith(trim($setPart), ",")) {
                    
$setPart substr(trim($setPart), 0strlen(trim($setPart)) - 1);
                }
                
                
$sql "UPDATE " $table " " $setPart;
                
                if( 
$id ) {
                    
$sql .= " WHERE id = '" $id "'";
                }
                
// echo $sql."<br />";        
                // die();
                
$this->query($sql);

                if (
$this->affectedRows()) {
                    return 
TRUE;
                }
                return 
FALSE;
            }
        }
    
    }

?>
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586