Model.class.php
77.3 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
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
namespace Think;
/**
* ThinkPHP Model模型类
* 实现了ORM和ActiveRecords模式
*/
class Model
{
// 操作状态
/** 插入模型数据 */
const MODEL_INSERT = 1;
/** 更新模型数据 */
const MODEL_UPDATE = 2;
/** 包含上面两种方式 */
const MODEL_BOTH = 3;
/** 必须验证 */
const MUST_VALIDATE = 1;
/** 表单存在字段则验证 */
const EXISTS_VALIDATE = 0;
/** 表单值不为空则验证 */
const VALUE_VALIDATE = 2;
/** 当前数据库操作对象 */
protected $db = null;
/** 数据库对象池 */
private $_db = array();
/** 主键名称 */
protected $pk = 'id';
/** 主键是否自动增长 */
protected $autoinc = false;
/** 数据表前缀 */
protected $tablePrefix = null;
/** 模型名称 */
protected $name = '';
/** 数据库名称 */
protected $dbName = '';
/** 数据库配置 */
protected $connection = '';
/** 数据表名(不包含表前缀) */
protected $tableName = '';
/** 实际数据表名(包含表前缀) */
protected $trueTableName = '';
/** 最近错误信息 */
protected $error = '';
/** 字段信息 */
protected $fields = array();
/** 数据信息 */
protected $data = array();
/** 查询表达式参数 */
protected $options = array();
/** 自动验证定义 */
protected $_validate = array();
/** 自动完成定义 */
protected $_auto = array();
/** 字段映射定义 */
protected $_map = array();
/** 命名范围定义 */
protected $_scope = array();
/** 是否自动检测数据表字段信息 */
protected $autoCheckFields = true;
/** 是否批处理验证 */
protected $patchValidate = false;
/** 链操作方法列表 */
protected $methods = array(
'strict',
'order',
'alias',
'having',
'group',
'lock',
'distinct',
'auto',
'filter',
'validate',
'result',
'token',
'index',
'force'
);
/**
* 架构函数
* 取得DB类的实例对象 字段检查
*
* @access public
* @param string $name
* 模型名称
* @param string $tablePrefix
* 表前缀
* @param mixed $connection
* 数据库连接信息
*/
public function __construct($name = '', $tablePrefix = '', $connection = '')
{
// 模型初始化
$this->_initialize();
// 获取模型名称
if (! empty($name)) {
if (strpos($name, '.')) { // 支持 数据库名.模型名的 定义
list ($this->dbName, $this->name) = explode('.', $name);
} else {
$this->name = $name;
}
} elseif (empty($this->name)) {
$this->name = $this->getModelName();
}
// 设置表前缀
if (is_null($tablePrefix)) { // 前缀为Null表示没有前缀
$this->tablePrefix = '';
} elseif ('' != $tablePrefix) {
$this->tablePrefix = $tablePrefix;
} elseif (! isset($this->tablePrefix)) {
$this->tablePrefix = C('DB_PREFIX');
}
// 数据库初始化操作
// 获取数据库操作对象
// 当前模型有独立的数据库连接信息
$this->db(0, empty($this->connection) ? $connection : $this->connection, true);
}
/**
* 自动检测数据表信息
*
* @access protected
* @return void
*/
protected function _checkTableInfo()
{
// 如果不是Model类 自动记录数据表信息
// 只在第一次执行记录
if (empty($this->fields)) {
// 如果数据表字段没有定义则自动获取
if (C('DB_FIELDS_CACHE')) {
$db = $this->dbName ? : C('DB_NAME');
$fields = F('_fields/' . strtolower($db . '.' . $this->tablePrefix . $this->name));
if ($fields) {
$this->fields = $fields;
if (! empty($fields['_pk'])) {
$this->pk = $fields['_pk'];
}
return;
}
}
// 每次都会读取数据表信息
$this->flush();
}
}
/**
* 获取字段信息并缓存
*
* @access public
* @return void
*/
public function flush()
{
// 缓存不存在则查询数据表信息
$this->db->setModel($this->name);
$fields = $this->db->getFields($this->getTableName());
if (! $fields) { // 无法获取字段信息
return false;
}
$this->fields = array_keys($fields);
unset($this->fields['_pk']);
foreach ($fields as $key => $val) {
// 记录字段类型
$type[$key] = $val['type'];
if ($val['primary']) {
// 增加复合主键支持
if (isset($this->fields['_pk']) && $this->fields['_pk'] != null) {
if (is_string($this->fields['_pk'])) {
$this->pk = array(
$this->fields['_pk']
);
$this->fields['_pk'] = $this->pk;
}
$this->pk[] = $key;
$this->fields['_pk'][] = $key;
} else {
$this->pk = $key;
$this->fields['_pk'] = $key;
}
if ($val['autoinc']) {
$this->autoinc = true;
}
}
}
// 记录字段类型信息
$this->fields['_type'] = $type;
// 2008-3-7 增加缓存开关控制
if (C('DB_FIELDS_CACHE')) {
// 永久缓存数据表信息
$db = $this->dbName ? : C('DB_NAME');
F('_fields/' . strtolower($db . '.' . $this->tablePrefix . $this->name), $this->fields);
}
}
/**
* 设置数据对象的值
*
* @access public
* @param string $name 名称
* @param mixed $value 值
* @return void
*/
public function __set($name, $value)
{
// 设置数据对象属性
$this->data[$name] = $value;
}
/**
* 获取数据对象的值
*
* @access public
* @param string $name 名称
* @return mixed
*/
public function __get($name)
{
return isset($this->data[$name]) ? $this->data[$name] : null;
}
/**
* 检测数据对象的值
*
* @access public
* @param string $name 名称
* @return boolean
*/
public function __isset($name)
{
return isset($this->data[$name]);
}
/**
* 销毁数据对象的值
*
* @access public
* @param string $name 名称
* @return void
*/
public function __unset($name)
{
unset($this->data[$name]);
}
/**
* 利用__call方法实现一些特殊的Model方法
*
* @access public
* @param string $method 方法名称
* @param array $args 调用参数
* @return mixed
*/
public function __call($method, $args)
{
if (in_array(strtolower($method), $this->methods, true)) {
// 连贯操作的实现
$this->options[strtolower($method)] = $args[0];
return $this;
} elseif (in_array(strtolower($method), array(
'count',
'sum',
'min',
'max',
'avg'
), true)) {
// 统计查询的实现
$field = isset($args[0]) ? $args[0] : '*';
return $this->getField(strtoupper($method) . '(' . $field . ') AS tp_' . $method);
} elseif (strtolower(substr($method, 0, 5)) == 'getby') {
// 根据某个字段获取记录
$field = parse_name(substr($method, 5));
$where[$field] = $args[0];
return $this->where($where)->find();
} elseif (strtolower(substr($method, 0, 10)) == 'getfieldby') {
// 根据某个字段获取记录的某个值
$name = parse_name(substr($method, 10));
$where[$name] = $args[0];
return $this->where($where)->getField($args[1]);
} elseif (isset($this->_scope[$method])) { // 命名范围的单独调用支持
return $this->scope($method, $args[0]);
} else {
E(__CLASS__ . ':' . $method . L('_METHOD_NOT_EXIST_'));
return;
}
}
// 回调方法 初始化模型
protected function _initialize()
{}
/**
* 对保存到数据库的数据进行处理
*
* @access protected
* @param mixed $data 要操作的数据
* @return boolean
*/
protected function _facade($data)
{
// 检查数据字段合法性
if (! empty($this->fields)) {
if (! empty($this->options['field'])) {
$fields = $this->options['field'];
unset($this->options['field']);
if (is_string($fields)) {
$fields = explode(',', $fields);
}
} else {
$fields = $this->fields;
}
foreach ($data as $key => $val) {
if (! in_array($key, $fields, true)) {
if (! empty($this->options['strict'])) {
E(L('_DATA_TYPE_INVALID_') . ':[' . $key . '=>' . $val . ']');
}
unset($data[$key]);
} elseif (is_scalar($val)) {
// 字段类型检查 和 强制转换
$this->_parseType($data, $key);
}
}
}
// 安全过滤
if (! empty($this->options['filter'])) {
$data = array_map($this->options['filter'], $data);
unset($this->options['filter']);
}
$this->_before_write($data);
return $data;
}
// 写入数据前的回调方法 包括新增和更新
protected function _before_write(&$data)
{}
/**
* 新增数据
*
* @access public
* @param mixed $data
* 数据
* @param array $options
* 表达式
* @param boolean $replace
* 是否replace
* @return mixed
*/
public function add($data = '', $options = array(), $replace = false)
{
if (empty($data)) {
// 没有传递数据,获取当前数据对象的值
if (! empty($this->data)) {
$data = $this->data;
// 重置数据
$this->data = array();
} else {
$this->error = L('_DATA_TYPE_INVALID_');
return false;
}
}
// by zhuxun begin, 记录SQL日志
sql_record(($replace ? 'replace' : 'insert') . ' into `' . $this->getTableName() . '`(?)', $data);
$this->__check_insert_data($data);
// end.
// 数据处理
$data = $this->_facade($data);
// 分析表达式
$options = $this->_parseOptions($options);
if (false === $this->_before_insert($data, $options)) {
return false;
}
// 写入数据到数据库
$result = $this->db->insert($data, $options, $replace);
if (false !== $result && is_numeric($result)) {
$pk = $this->getPk();
// 增加复合主键支持
if (is_array($pk)) {
return $result;
}
$insertId = $this->getLastInsID();
if ($insertId) {
// 自增主键返回插入ID
$data[$pk] = $insertId;
if (false === $this->_after_insert($data, $options)) {
return false;
}
return $insertId;
}
if (false === $this->_after_insert($data, $options)) {
return false;
}
}
return $result;
}
// 插入数据前的回调方法
protected function _before_insert(&$data, $options)
{}
// 插入成功后的回调方法
protected function _after_insert($data, $options)
{}
public function addAll($dataList, $options = array(), $replace = false)
{
if (empty($dataList)) {
$this->error = L('_DATA_TYPE_INVALID_');
return false;
}
// by zhuxun begin, 记录SQL日志
sql_record(($replace ? 'replace' : 'insert') . ' into `' . $this->getTableName() . '`(?)', $dataList);
// end.
// 数据处理
foreach ($dataList as $key => $data) {
// by zhuxun begin, 检查默认值
$this->__check_insert_data($data);
// end.
$dataList[$key] = $this->_facade($data);
}
// 分析表达式
$options = $this->_parseOptions($options);
// 写入数据到数据库
$result = $this->db->insertAll($dataList, $options, $replace);
if (false !== $result) {
$insertId = $this->getLastInsID();
if ($insertId) {
return $insertId;
}
}
return $result;
}
/**
* 通过Select方式添加记录
*
* @access public
* @param string $fields
* 要插入的数据表字段名
* @param string $table
* 要插入的数据表名
* @param array $options
* 表达式
* @return boolean
*/
public function selectAdd($fields = '', $table = '', $options = array())
{
// 分析表达式
$options = $this->_parseOptions($options);
// 写入数据到数据库
if (false === $result = $this->db->selectInsert($fields ? : $options['field'], $table ? : $this->getTableName(), $options)) {
// 数据库插入操作失败
$this->error = L('_OPERATION_WRONG_');
return false;
} else {
// 插入成功
return $result;
}
}
/**
* 保存数据
*
* @access public
* @param mixed $data
* 数据
* @param array $options
* 表达式
* @return boolean
*/
public function save($data = '', $options = array())
{
if (empty($data)) {
// 没有传递数据,获取当前数据对象的值
if (! empty($this->data)) {
$data = $this->data;
// 重置数据
$this->data = array();
} else {
$this->error = L('_DATA_TYPE_INVALID_');
return false;
}
}
// 数据处理
$data = $this->_facade($data);
if (empty($data)) {
// 没有数据则不执行
$this->error = L('_DATA_TYPE_INVALID_');
return false;
}
// 分析表达式
$options = $this->_parseOptions($options);
$pk = $this->getPk();
if (! isset($options['where'])) {
// 如果存在主键数据 则自动作为更新条件
if (is_string($pk) && isset($data[$pk])) {
$where[$pk] = $data[$pk];
unset($data[$pk]);
} elseif (is_array($pk)) {
// 增加复合主键支持
foreach ($pk as $field) {
if (isset($data[$field])) {
$where[$field] = $data[$field];
} else {
// 如果缺少复合主键数据则不执行
$this->error = L('_OPERATION_WRONG_');
return false;
}
unset($data[$field]);
}
}
if (! isset($where)) {
// 如果没有任何更新条件则不执行
$this->error = L('_OPERATION_WRONG_');
return false;
} else {
$options['where'] = $where;
}
}
if (is_array($options['where']) && isset($options['where'][$pk])) {
$pkValue = $options['where'][$pk];
}
if (false === $this->_before_update($data, $options)) {
return false;
}
$result = $this->db->update($data, $options);
if (false !== $result && is_numeric($result)) {
if (isset($pkValue)) {
$data[$pk] = $pkValue;
}
$this->_after_update($data, $options);
}
return $result;
}
// 更新数据前的回调方法
protected function _before_update(&$data, $options)
{}
// 更新成功后的回调方法
protected function _after_update($data, $options)
{}
/**
* 删除数据
*
* @access public
* @param mixed $options
* 表达式
* @return mixed
*/
public function delete($options = array())
{
$pk = $this->getPk();
if (empty($options) && empty($this->options['where'])) {
// 如果删除条件为空 则删除当前数据对象所对应的记录
if (! empty($this->data) && isset($this->data[$pk])) {
return $this->delete($this->data[$pk]);
} else {
return false;
}
}
if (is_numeric($options) || is_string($options)) {
// 根据主键删除记录
if (strpos($options, ',')) {
$where[$pk] = array(
'IN',
$options
);
} else {
$where[$pk] = $options;
}
$options = array();
$options['where'] = $where;
}
// 根据复合主键删除记录
if (is_array($options) && (count($options) > 0) && is_array($pk)) {
$count = 0;
foreach (array_keys($options) as $key) {
if (is_int($key)) {
$count ++;
}
}
if ($count == count($pk)) {
$i = 0;
foreach ($pk as $field) {
$where[$field] = $options[$i];
unset($options[$i ++]);
}
$options['where'] = $where;
} else {
return false;
}
}
// 分析表达式
$options = $this->_parseOptions($options);
if (empty($options['where'])) {
// 如果条件为空 不进行删除操作 除非设置 1=1
return false;
}
if (is_array($options['where']) && isset($options['where'][$pk])) {
$pkValue = $options['where'][$pk];
}
if (false === $this->_before_delete($options)) {
return false;
}
$result = $this->db->delete($options);
if (false !== $result && is_numeric($result)) {
$data = array();
if (isset($pkValue)) {
$data[$pk] = $pkValue;
}
$this->_after_delete($data, $options);
}
// 返回删除记录个数
return $result;
}
// 删除数据前的回调方法
protected function _before_delete($options)
{}
// 删除成功后的回调方法
protected function _after_delete($data, $options)
{}
/**
* 查询数据集
*
* @access public
* @param array $options
* 表达式参数
* @return mixed
*/
public function select($options = array())
{
$pk = $this->getPk();
if (is_string($options) || is_numeric($options)) {
// 根据主键查询
if (strpos($options, ',')) {
$where[$pk] = array(
'IN',
$options
);
} else {
$where[$pk] = $options;
}
$options = array();
$options['where'] = $where;
} elseif (is_array($options) && (count($options) > 0) && is_array($pk)) {
// 根据复合主键查询
$count = 0;
foreach (array_keys($options) as $key) {
if (is_int($key)) {
$count ++;
}
}
if ($count == count($pk)) {
$i = 0;
foreach ($pk as $field) {
$where[$field] = $options[$i];
unset($options[$i ++]);
}
$options['where'] = $where;
} else {
return false;
}
} elseif (false === $options) { // 用于子查询 不查询只返回SQL
$options['fetch_sql'] = true;
}
// 分析表达式
$options = $this->_parseOptions($options);
// 判断查询缓存
if (isset($options['cache'])) {
$cache = $options['cache'];
$key = is_string($cache['key']) ? $cache['key'] : md5(serialize($options));
$data = S($key, '', $cache);
if (false !== $data) {
return $data;
}
}
$resultSet = $this->db->select($options);
if (false === $resultSet) {
return false;
}
if (! empty($resultSet)) { // 有查询结果
if (is_string($resultSet)) {
return $resultSet;
}
$resultSet = array_map(array(
$this,
'_read_data'
), $resultSet);
$this->_after_select($resultSet, $options);
if (isset($options['index'])) { // 对数据集进行索引
$index = explode(',', $options['index']);
foreach ($resultSet as $result) {
$_key = $result[$index[0]];
if (isset($index[1]) && isset($result[$index[1]])) {
$cols[$_key] = $result[$index[1]];
} else {
$cols[$_key] = $result;
}
}
$resultSet = $cols;
}
}
if (isset($cache)) {
S($key, $resultSet, $cache);
}
return $resultSet;
}
// 查询成功后的回调方法
protected function _after_select(&$resultSet, $options)
{}
/**
* 生成查询SQL 可用于子查询
*
* @access public
* @return string
*/
public function buildSql()
{
return '( ' . $this->fetchSql(true)->select() . ' )';
}
/**
* 分析表达式
*
* @access protected
* @param array $options
* 表达式参数
* @return array
*/
protected function _parseOptions($options = array())
{
if (is_array($options)) {
$options = array_merge($this->options, $options);
}
if (! isset($options['table'])) {
// 自动获取表名
$options['table'] = $this->getTableName();
$fields = $this->fields;
} else {
// 指定数据表 则重新获取字段列表 但不支持类型检测
$fields = $this->getDbFields();
}
// 数据表别名
if (! empty($options['alias'])) {
$options['table'] .= ' ' . $options['alias'];
}
// 记录操作的模型名称
$options['model'] = $this->name;
// 字段类型验证
if (isset($options['where']) && is_array($options['where']) && ! empty($fields) && ! isset($options['join'])) {
// 对数组查询条件进行字段类型检查
foreach ($options['where'] as $key => $val) {
$key = trim($key);
if (in_array($key, $fields, true)) {
if (is_scalar($val)) {
$this->_parseType($options['where'], $key);
}
} elseif (! is_numeric($key) && '_' != substr($key, 0, 1) && false === strpos($key, '.') && false === strpos($key, '(') && false === strpos($key, '|') && false === strpos($key, '&')) {
if (! empty($this->options['strict'])) {
E(L('_ERROR_QUERY_EXPRESS_') . ':[' . $key . '=>' . $val . ']');
}
unset($options['where'][$key]);
}
}
}
// 查询过后清空sql表达式组装 避免影响下次查询
$this->options = array();
// 表达式过滤
$this->_options_filter($options);
return $options;
}
// 表达式过滤回调方法
protected function _options_filter(&$options)
{}
/**
* 数据类型检测
*
* @access protected
* @param mixed $data
* 数据
* @param string $key
* 字段名
* @return void
*/
protected function _parseType(&$data, $key)
{
if (! isset($this->options['bind'][':' . $key]) && isset($this->fields['_type'][$key])) {
$fieldType = strtolower($this->fields['_type'][$key]);
if (false !== strpos($fieldType, 'enum')) {
// 支持ENUM类型优先检测
} elseif (false === strpos($fieldType, 'bigint') && false !== strpos($fieldType, 'int')) {
$data[$key] = intval($data[$key]);
} elseif (false !== strpos($fieldType, 'float') || false !== strpos($fieldType, 'double')) {
$data[$key] = floatval($data[$key]);
} elseif (false !== strpos($fieldType, 'bool')) {
$data[$key] = (bool) $data[$key];
}
}
}
/**
* 数据读取后的处理
*
* @access protected
* @param array $data
* 当前数据
* @return array
*/
protected function _read_data($data)
{
// 检查字段映射
if (! empty($this->_map) && C('READ_DATA_MAP')) {
foreach ($this->_map as $key => $val) {
if (isset($data[$val])) {
$data[$key] = $data[$val];
unset($data[$val]);
}
}
}
return $data;
}
/**
* 查询数据
*
* @access public
* @param mixed $options
* 表达式参数
* @return mixed
*/
public function find($options = array())
{
if (is_numeric($options) || is_string($options)) {
$where[$this->getPk()] = $options;
$options = array();
$options['where'] = $where;
}
// 根据复合主键查找记录
$pk = $this->getPk();
if (is_array($options) && (count($options) > 0) && is_array($pk)) {
// 根据复合主键查询
$count = 0;
foreach (array_keys($options) as $key) {
if (is_int($key)) {
$count ++;
}
}
if ($count == count($pk)) {
$i = 0;
foreach ($pk as $field) {
$where[$field] = $options[$i];
unset($options[$i ++]);
}
$options['where'] = $where;
} else {
return false;
}
}
// 总是查找一条记录
$options['limit'] = 1;
// 分析表达式
$options = $this->_parseOptions($options);
// 判断查询缓存
if (isset($options['cache'])) {
$cache = $options['cache'];
$key = is_string($cache['key']) ? $cache['key'] : md5(serialize($options));
$data = S($key, '', $cache);
if (false !== $data) {
$this->data = $data;
return $data;
}
}
$resultSet = $this->db->select($options);
if (false === $resultSet) {
return false;
}
if (empty($resultSet)) { // 查询结果为空
return null;
}
if (is_string($resultSet)) {
return $resultSet;
}
// 读取数据后的处理
$data = $this->_read_data($resultSet[0]);
$this->_after_find($data, $options);
if (! empty($this->options['result'])) {
return $this->returnResult($data, $this->options['result']);
}
$this->data = $data;
if (isset($cache)) {
S($key, $data, $cache);
}
return $this->data;
}
// 查询成功的回调方法
protected function _after_find(&$result, $options)
{}
protected function returnResult($data, $type = '')
{
if ($type) {
if (is_callable($type)) {
return call_user_func($type, $data);
}
switch (strtolower($type)) {
case 'json':
return json_encode($data);
case 'xml':
return xml_encode($data);
}
}
return $data;
}
/**
* 处理字段映射
*
* @access public
* @param array $data
* 当前数据
* @param integer $type
* 类型 0 写入 1 读取
* @return array
*/
public function parseFieldsMap($data, $type = 1)
{
// 检查字段映射
if (! empty($this->_map)) {
foreach ($this->_map as $key => $val) {
if ($type == 1) { // 读取
if (isset($data[$val])) {
$data[$key] = $data[$val];
unset($data[$val]);
}
} else {
if (isset($data[$key])) {
$data[$val] = $data[$key];
unset($data[$key]);
}
}
}
}
return $data;
}
/**
* 设置记录的某个字段值
* 支持使用数据库字段和方法
*
* @access public
* @param string|array $field
* 字段名
* @param string $value
* 字段值
* @return boolean
*/
public function setField($field, $value = '')
{
if (is_array($field)) {
$data = $field;
} else {
$data[$field] = $value;
}
return $this->save($data);
}
/**
* 字段值增长
*
* @access public
* @param string $field
* 字段名
* @param integer $step
* 增长值
* @param integer $lazyTime
* 延时时间(s)
* @return boolean
*/
public function setInc($field, $step = 1, $lazyTime = 0)
{
if ($lazyTime > 0) { // 延迟写入
$condition = $this->options['where'];
$guid = md5($this->name . '_' . $field . '_' . serialize($condition));
$step = $this->lazyWrite($guid, $step, $lazyTime);
if (false === $step) {
return true; // 等待下次写入
}
}
return $this->setField($field, array(
'exp',
$field . '+' . $step
));
}
/**
* 字段值减少
*
* @access public
* @param string $field
* 字段名
* @param integer $step
* 减少值
* @param integer $lazyTime
* 延时时间(s)
* @return boolean
*/
public function setDec($field, $step = 1, $lazyTime = 0)
{
if ($lazyTime > 0) { // 延迟写入
$condition = $this->options['where'];
$guid = md5($this->name . '_' . $field . '_' . serialize($condition));
$step = $this->lazyWrite($guid, $step, $lazyTime);
if (false === $step) {
return true; // 等待下次写入
}
}
return $this->setField($field, array(
'exp',
$field . '-' . $step
));
}
/**
* 延时更新检查 返回false表示需要延时
* 否则返回实际写入的数值
*
* @access public
* @param string $guid
* 写入标识
* @param integer $step
* 写入步进值
* @param integer $lazyTime
* 延时时间(s)
* @return false|integer
*/
protected function lazyWrite($guid, $step, $lazyTime)
{
if (false !== ($value = S($guid))) { // 存在缓存写入数据
if (NOW_TIME > S($guid . '_time') + $lazyTime) {
// 延时更新时间到了,删除缓存数据 并实际写入数据库
S($guid, null);
S($guid . '_time', null);
return $value + $step;
} else {
// 追加数据到缓存
S($guid, $value + $step);
return false;
}
} else { // 没有缓存数据
S($guid, $step);
// 计时开始
S($guid . '_time', NOW_TIME);
return false;
}
}
/**
* 获取一条记录的某个字段值
*
* @access public
* @param string $field
* 字段名
* @param string $spea
* 字段数据间隔符号 NULL返回数组
* @return mixed
*/
public function getField($field, $sepa = null)
{
$options['field'] = $field;
$options = $this->_parseOptions($options);
// 判断查询缓存
if (isset($options['cache'])) {
$cache = $options['cache'];
$key = is_string($cache['key']) ? $cache['key'] : md5($sepa . serialize($options));
$data = S($key, '', $cache);
if (false !== $data) {
return $data;
}
}
$field = trim($field);
if (strpos($field, ',') && false !== $sepa) { // 多字段
if (! isset($options['limit'])) {
$options['limit'] = is_numeric($sepa) ? $sepa : '';
}
$resultSet = $this->db->select($options);
if (! empty($resultSet)) {
if (is_string($resultSet)) {
return $resultSet;
}
$_field = explode(',', $field);
$field = array_keys($resultSet[0]);
$key1 = array_shift($field);
$key2 = array_shift($field);
$cols = array();
$count = count($_field);
foreach ($resultSet as $result) {
$name = $result[$key1];
if (2 == $count) {
$cols[$name] = $result[$key2];
} else {
$cols[$name] = is_string($sepa) ? implode($sepa, array_slice($result, 1)) : $result;
}
}
if (isset($cache)) {
S($key, $cols, $cache);
}
return $cols;
}
} else { // 查找一条记录
// 返回数据个数
if (true !== $sepa) { // 当sepa指定为true的时候 返回所有数据
$options['limit'] = is_numeric($sepa) ? $sepa : 1;
}
$result = $this->db->select($options);
if (! empty($result)) {
if (is_string($result)) {
return $result;
}
if (true !== $sepa && 1 == $options['limit']) {
$data = reset($result[0]);
if (isset($cache)) {
S($key, $data, $cache);
}
return $data;
}
foreach ($result as $val) {
$array[] = $val[$field];
}
if (isset($cache)) {
S($key, $array, $cache);
}
return $array;
}
}
return null;
}
/**
* 创建数据对象 但不保存到数据库
*
* @access public
* @param mixed $data
* 创建数据
* @param string $type
* 状态
* @return mixed
*/
public function create($data = '', $type = '')
{
// 如果没有传值默认取POST数据
if (empty($data)) {
$data = I('post.');
} elseif (is_object($data)) {
$data = get_object_vars($data);
}
// 验证数据
if (empty($data) || ! is_array($data)) {
$this->error = L('_DATA_TYPE_INVALID_');
return false;
}
// 状态
$type = $type ? : (! empty($data[$this->getPk()]) ? self::MODEL_UPDATE : self::MODEL_INSERT);
// 检查字段映射
if (! empty($this->_map)) {
foreach ($this->_map as $key => $val) {
if (isset($data[$key])) {
$data[$val] = $data[$key];
unset($data[$key]);
}
}
}
// 检测提交字段的合法性
if (isset($this->options['field'])) { // $this->field('field1,field2...')->create()
$fields = $this->options['field'];
unset($this->options['field']);
} elseif ($type == self::MODEL_INSERT && isset($this->insertFields)) {
$fields = $this->insertFields;
} elseif ($type == self::MODEL_UPDATE && isset($this->updateFields)) {
$fields = $this->updateFields;
}
if (isset($fields)) {
if (is_string($fields)) {
$fields = explode(',', $fields);
}
// 判断令牌验证字段
if (C('TOKEN_ON')) {
$fields[] = C('TOKEN_NAME', null, '__hash__');
}
foreach ($data as $key => $val) {
if (! in_array($key, $fields)) {
unset($data[$key]);
}
}
}
// 数据自动验证
if (! $this->autoValidation($data, $type)) {
return false;
}
// 表单令牌验证
if (! $this->autoCheckToken($data)) {
$this->error = L('_TOKEN_ERROR_');
return false;
}
// 验证完成生成数据对象
if ($this->autoCheckFields) { // 开启字段检测 则过滤非法字段数据
$fields = $this->getDbFields();
foreach ($data as $key => $val) {
if (! in_array($key, $fields)) {
unset($data[$key]);
} elseif (MAGIC_QUOTES_GPC && is_string($val)) {
$data[$key] = stripslashes($val);
}
}
}
// 创建完成对数据进行自动处理
$this->autoOperation($data, $type);
// 赋值当前数据对象
$this->data = $data;
// 返回创建的数据以供其他调用
return $data;
}
// 自动表单令牌验证
// TODO ajax无刷新多次提交暂不能满足
public function autoCheckToken($data)
{
// 支持使用token(false) 关闭令牌验证
if (isset($this->options['token']) && ! $this->options['token']) {
return true;
}
if (C('TOKEN_ON')) {
$name = C('TOKEN_NAME', null, '__hash__');
if (! isset($data[$name]) || ! isset($_SESSION[$name])) { // 令牌数据无效
return false;
}
// 令牌验证
list ($key, $value) = explode('_', $data[$name]);
if (isset($_SESSION[$name][$key]) && $value && $_SESSION[$name][$key] === $value) { // 防止重复提交
unset($_SESSION[$name][$key]); // 验证完成销毁session
return true;
}
// 开启TOKEN重置
if (C('TOKEN_RESET')) {
unset($_SESSION[$name][$key]);
}
return false;
}
return true;
}
/**
* 使用正则验证数据
*
* @access public
* @param string $value
* 要验证的数据
* @param string $rule
* 验证规则
* @return boolean
*/
public function regex($value, $rule)
{
$validate = array(
'require' => '/\S+/',
'email' => '/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/',
'url' => '/^http(s?):\/\/(?:[A-za-z0-9-]+\.)+[A-za-z]{2,4}(:\d+)?(?:[\/\?#][\/=\?%\-&~`@[\]\':+!\.#\w]*)?$/',
'currency' => '/^\d+(\.\d+)?$/',
'number' => '/^\d+$/',
'zip' => '/^\d{6}$/',
'integer' => '/^[-\+]?\d+$/',
'double' => '/^[-\+]?\d+(\.\d+)?$/',
'english' => '/^[A-Za-z]+$/'
);
// 检查是否有内置的正则表达式
if (isset($validate[strtolower($rule)])) {
$rule = $validate[strtolower($rule)];
}
return preg_match($rule, $value) === 1;
}
/**
* 自动表单处理
*
* @access public
* @param array $data
* 创建数据
* @param string $type
* 创建类型
* @return mixed
*/
private function autoOperation(&$data, $type)
{
if (! empty($this->options['auto'])) {
$_auto = $this->options['auto'];
unset($this->options['auto']);
} elseif (! empty($this->_auto)) {
$_auto = $this->_auto;
}
// 自动填充
if (isset($_auto)) {
foreach ($_auto as $auto) {
// 填充因子定义格式
// array('field','填充内容','填充条件','附加规则',[额外参数])
if (empty($auto[2])) {
$auto[2] = self::MODEL_INSERT; // 默认为新增的时候自动填充
}
if ($type == $auto[2] || $auto[2] == self::MODEL_BOTH) {
if (empty($auto[3])) {
$auto[3] = 'string';
}
switch (trim($auto[3])) {
case 'function': // 使用函数进行填充 字段的值作为参数
case 'callback': // 使用回调方法
$args = isset($auto[4]) ? (array) $auto[4] : array();
if (isset($data[$auto[0]])) {
array_unshift($args, $data[$auto[0]]);
}
if ('function' == $auto[3]) {
$data[$auto[0]] = call_user_func_array($auto[1], $args);
} else {
$data[$auto[0]] = call_user_func_array(array(
&$this,
$auto[1]
), $args);
}
break;
case 'field': // 用其它字段的值进行填充
$data[$auto[0]] = $data[$auto[1]];
break;
case 'ignore': // 为空忽略
if ($auto[1] === $data[$auto[0]]) {
unset($data[$auto[0]]);
}
break;
case 'string':
default: // 默认作为字符串填充
$data[$auto[0]] = $auto[1];
}
if (isset($data[$auto[0]]) && false === $data[$auto[0]]) {
unset($data[$auto[0]]);
}
}
}
}
return $data;
}
/**
* 自动表单验证
*
* @access protected
* @param array $data
* 创建数据
* @param string $type
* 创建类型
* @return boolean
*/
protected function autoValidation($data, $type)
{
if (! empty($this->options['validate'])) {
$_validate = $this->options['validate'];
unset($this->options['validate']);
} elseif (! empty($this->_validate)) {
$_validate = $this->_validate;
}
// 属性验证
if (isset($_validate)) { // 如果设置了数据自动验证则进行数据验证
if ($this->patchValidate) { // 重置验证错误信息
$this->error = array();
}
foreach ($_validate as $key => $val) {
// 验证因子定义格式
// array(field,rule,message,condition,type,when,params)
// 判断是否需要执行验证
if (empty($val[5]) || ($val[5] == self::MODEL_BOTH && $type < 3) || $val[5] == $type) {
if (0 == strpos($val[2], '{%') && strpos($val[2], '}')) {
// 支持提示信息的多语言 使用 {%语言定义} 方式
$val[2] = L(substr($val[2], 2, - 1));
}
$val[3] = isset($val[3]) ? $val[3] : self::EXISTS_VALIDATE;
$val[4] = isset($val[4]) ? $val[4] : 'regex';
// 判断验证条件
switch ($val[3]) {
case self::MUST_VALIDATE: // 必须验证 不管表单是否有设置该字段
if (false === $this->_validationField($data, $val)) {
return false;
}
break;
case self::VALUE_VALIDATE: // 值不为空的时候才验证
if ('' != trim($data[$val[0]])) {
if (false === $this->_validationField($data, $val)) {
return false;
}
}
break;
default: // 默认表单存在该字段就验证
if (isset($data[$val[0]])) {
if (false === $this->_validationField($data, $val)) {
return false;
}
}
}
}
}
// 批量验证的时候最后返回错误
if (! empty($this->error)) {
return false;
}
}
return true;
}
/**
* 验证表单字段 支持批量验证
* 如果批量验证返回错误的数组信息
*
* @access protected
* @param array $data
* 创建数据
* @param array $val
* 验证因子
* @return boolean
*/
protected function _validationField($data, $val)
{
if ($this->patchValidate && isset($this->error[$val[0]])) {
return; // 当前字段已经有规则验证没有通过
}
if (false === $this->_validationFieldItem($data, $val)) {
if ($this->patchValidate) {
$this->error[$val[0]] = $val[2];
} else {
$this->error = $val[2];
return false;
}
}
return;
}
/**
* 根据验证因子验证字段
*
* @access protected
* @param array $data
* 创建数据
* @param array $val
* 验证因子
* @return boolean
*/
protected function _validationFieldItem($data, $val)
{
switch (strtolower(trim($val[4]))) {
case 'function': // 使用函数进行验证
case 'callback': // 调用方法进行验证
$args = isset($val[6]) ? (array) $val[6] : array();
if (is_string($val[0]) && strpos($val[0], ',')) {
$val[0] = explode(',', $val[0]);
}
if (is_array($val[0])) {
// 支持多个字段验证
foreach ($val[0] as $field) {
$_data[$field] = $data[$field];
}
array_unshift($args, $_data);
} else {
array_unshift($args, $data[$val[0]]);
}
if ('function' == $val[4]) {
return call_user_func_array($val[1], $args);
} else {
return call_user_func_array(array(
&$this,
$val[1]
), $args);
}
case 'confirm': // 验证两个字段是否相同
return $data[$val[0]] == $data[$val[1]];
case 'unique': // 验证某个值是否唯一
if (is_string($val[0]) && strpos($val[0], ',')) {
$val[0] = explode(',', $val[0]);
}
$map = array();
if (is_array($val[0])) {
// 支持多个字段验证
foreach ($val[0] as $field) {
$map[$field] = $data[$field];
}
} else {
$map[$val[0]] = $data[$val[0]];
}
$pk = $this->getPk();
if (! empty($data[$pk]) && is_string($pk)) { // 完善编辑的时候验证唯一
$map[$pk] = array(
'neq',
$data[$pk]
);
}
if ($this->where($map)->find()) {
return false;
}
return true;
default: // 检查附加规则
return $this->check($data[$val[0]], $val[1], $val[4]);
}
}
/**
* 验证数据 支持 in between equal length regex expire ip_allow ip_deny
*
* @access public
* @param string $value
* 验证数据
* @param mixed $rule
* 验证表达式
* @param string $type
* 验证方式 默认为正则验证
* @return boolean
*/
public function check($value, $rule, $type = 'regex')
{
$type = strtolower(trim($type));
switch ($type) {
case 'in': // 验证是否在某个指定范围之内 逗号分隔字符串或者数组
case 'notin':
$range = is_array($rule) ? $rule : explode(',', $rule);
return $type == 'in' ? in_array($value, $range) : ! in_array($value, $range);
case 'between': // 验证是否在某个范围
case 'notbetween': // 验证是否不在某个范围
if (is_array($rule)) {
$min = $rule[0];
$max = $rule[1];
} else {
list ($min, $max) = explode(',', $rule);
}
return $type == 'between' ? $value >= $min && $value <= $max : $value < $min || $value > $max;
case 'equal': // 验证是否等于某个值
case 'notequal': // 验证是否等于某个值
return $type == 'equal' ? $value == $rule : $value != $rule;
case 'length': // 验证长度
$length = mb_strlen($value, 'utf-8'); // 当前数据长度
if (strpos($rule, ',')) { // 长度区间
list ($min, $max) = explode(',', $rule);
return $length >= $min && $length <= $max;
} else { // 指定长度
return $length == $rule;
}
case 'expire':
list ($start, $end) = explode(',', $rule);
if (! is_numeric($start)) {
$start = strtotime($start);
}
if (! is_numeric($end)) {
$end = strtotime($end);
}
return NOW_TIME >= $start && NOW_TIME <= $end;
case 'ip_allow': // IP 操作许可验证
return in_array(get_client_ip(), explode(',', $rule));
case 'ip_deny': // IP 操作禁止验证
return ! in_array(get_client_ip(), explode(',', $rule));
case 'regex':
default: // 默认使用正则验证 可以使用验证类中定义的验证名称
// 检查附加规则
return $this->regex($value, $rule);
}
}
/**
* SQL查询
*
* @access public
* @param string $sql
* SQL指令
* @param mixed $parse
* 是否需要解析SQL
* @return mixed
*/
public function query($sql, $parse = false)
{
if (! is_bool($parse) && ! is_array($parse)) {
$parse = func_get_args();
array_shift($parse);
}
$sql = $this->parseSql($sql, $parse);
return $this->db->query($sql);
}
/**
* 执行SQL语句
*
* @access public
* @param string $sql
* SQL指令
* @param mixed $parse
* 是否需要解析SQL
* @return false | integer
*/
public function execute($sql, $parse = false)
{
if (! is_bool($parse) && ! is_array($parse)) {
$parse = func_get_args();
array_shift($parse);
}
$sql = $this->parseSql($sql, $parse);
return $this->db->execute($sql);
}
/**
* 解析SQL语句
*
* @access public
* @param string $sql
* SQL指令
* @param boolean $parse
* 是否需要解析SQL
* @return string
*/
protected function parseSql($sql, $parse)
{
// 分析表达式
if (true === $parse) {
$options = $this->_parseOptions();
$sql = $this->db->parseSql($sql, $options);
} elseif (is_array($parse)) { // SQL预处理
$parse = array_map(array(
$this->db,
'escapeString'
), $parse);
$sql = vsprintf($sql, $parse);
} else {
$sql = strtr($sql, array(
'__TABLE__' => $this->getTableName(),
'__PREFIX__' => $this->tablePrefix
));
$prefix = $this->tablePrefix;
$sql = preg_replace_callback("/__([A-Z0-9_-]+)__/sU", function ($match) use($prefix)
{
return $prefix . strtolower($match[1]);
}, $sql);
}
$this->db->setModel($this->name);
return $sql;
}
/**
* 切换当前的数据库连接
*
* @access public
* @param integer $linkNum
* 连接序号
* @param mixed $config
* 数据库连接信息
* @param boolean $force
* 强制重新连接
* @return Model
*/
public function db($linkNum = '', $config = '', $force = false)
{
if ('' === $linkNum && $this->db) {
return $this->db;
}
if (! isset($this->_db[$linkNum]) || $force) {
// 创建一个新的实例
if (! empty($config) && is_string($config) && false === strpos($config, '/')) { // 支持读取配置参数
$config = C($config);
}
$this->_db[$linkNum] = Db::getInstance($config);
} elseif (null === $config) {
$this->_db[$linkNum]->close(); // 关闭数据库连接
unset($this->_db[$linkNum]);
return;
}
// 切换数据库连接
$this->db = $this->_db[$linkNum];
$this->_after_db();
// 字段检测
if (! empty($this->name) && $this->autoCheckFields) {
$this->_checkTableInfo();
}
return $this;
}
// 数据库切换后回调方法
protected function _after_db()
{}
/**
* 得到当前的数据对象名称
*
* @access public
* @return string
*/
public function getModelName()
{
if (empty($this->name)) {
$name = substr(get_class($this), 0, - strlen(C('DEFAULT_M_LAYER')));
$pos = strrpos($name, '\\');
if ($pos) {
// 有命名空间
$this->name = substr($name, $pos + 1);
} else {
$this->name = $name;
}
}
return $this->name;
}
/**
* 得到完整的数据表名
*
* @access public
* @return string
*/
public function getTableName()
{
if (empty($this->trueTableName)) {
$tableName = ! empty($this->tablePrefix) ? $this->tablePrefix : '';
if (! empty($this->tableName)) {
$tableName .= $this->tableName;
} else {
$tableName .= parse_name($this->name);
}
$this->trueTableName = strtolower($tableName);
}
return (! empty($this->dbName) ? $this->dbName . '.' : '') . $this->trueTableName;
}
/**
* 启动事务
*
* @access public
* @return void
*/
public function startTrans()
{
$this->commit();
$this->db->startTrans();
return;
}
/**
* 提交事务
*
* @access public
* @return boolean
*/
public function commit()
{
return $this->db->commit();
}
/**
* 事务回滚
*
* @access public
* @return boolean
*/
public function rollback()
{
return $this->db->rollback();
}
/**
* 返回模型的错误信息
*
* @access public
* @return string
*/
public function getError()
{
return $this->error;
}
/**
* 返回数据库的错误信息
*
* @access public
* @return string
*/
public function getDbError()
{
return $this->db->getError();
}
/**
* 返回最后插入的ID
*
* @access public
* @return string
*/
public function getLastInsID()
{
return $this->db->getLastInsID();
}
/**
* 返回最后执行的sql语句
*
* @access public
* @return string
*/
public function getLastSql()
{
return $this->db->getLastSql($this->name);
}
// 鉴于getLastSql比较常用 增加_sql 别名
public function _sql()
{
return $this->getLastSql();
}
/**
* 获取主键名称
*
* @access public
* @return string
*/
public function getPk()
{
return $this->pk;
}
/**
* 获取数据表字段信息
*
* @access public
* @return array
*/
public function getDbFields($getTypePk = false)
{
if (isset($this->options['table'])) { // 动态指定表名
if (is_array($this->options['table'])) {
$table = key($this->options['table']);
} else {
$table = $this->options['table'];
if (strpos($table, ')')) {
// 子查询
return false;
}
}
$fields = $this->db->getFields($table);
return $fields ? array_keys($fields) : false;
}
if ($this->fields) {
$fields = $this->fields;
if (!$getTypePk) {
unset($fields['_type'], $fields['_pk']);
}
return $fields;
}
return false;
}
/**
* 设置数据对象值
*
* @access public
* @param mixed $data
* 数据
* @return Model
*/
public function data($data = '')
{
if ('' === $data && ! empty($this->data)) {
return $this->data;
}
if (is_object($data)) {
$data = get_object_vars($data);
} elseif (is_string($data)) {
parse_str($data, $data);
} elseif (! is_array($data)) {
E(L('_DATA_TYPE_INVALID_'));
}
$this->data = $data;
return $this;
}
/**
* 指定当前的数据表
*
* @access public
* @param mixed $table
* @return Model
*/
public function table($table)
{
$prefix = $this->tablePrefix;
if (is_array($table)) {
$this->options['table'] = $table;
} elseif (! empty($table)) {
// 将__TABLE_NAME__替换成带前缀的表名
$table = preg_replace_callback("/__([A-Z0-9_-]+)__/sU", function ($match) use($prefix)
{
return $prefix . strtolower($match[1]);
}, $table);
$this->options['table'] = $table;
}
return $this;
}
/**
* USING支持 用于多表删除
*
* @access public
* @param mixed $using
* @return Model
*/
public function using($using)
{
$prefix = $this->tablePrefix;
if (is_array($using)) {
$this->options['using'] = $using;
} elseif (! empty($using)) {
// 将__TABLE_NAME__替换成带前缀的表名
$using = preg_replace_callback("/__([A-Z0-9_-]+)__/sU", function ($match) use($prefix)
{
return $prefix . strtolower($match[1]);
}, $using);
$this->options['using'] = $using;
}
return $this;
}
/**
* 查询SQL组装 join
*
* @access public
* @param mixed $join
* @param string $type
* JOIN类型
* @return Model
*/
public function join($join, $type = 'INNER')
{
$prefix = $this->tablePrefix;
if (is_array($join)) {
foreach ($join as $key => &$_join) {
$_join = preg_replace_callback("/__([A-Z0-9_-]+)__/sU", function ($match) use($prefix)
{
return $prefix . strtolower($match[1]);
}, $_join);
$_join = false !== stripos($_join, 'JOIN') ? $_join : $type . ' JOIN ' . $_join;
}
$this->options['join'] = $join;
} elseif (! empty($join)) {
// 将__TABLE_NAME__字符串替换成带前缀的表名
$join = preg_replace_callback("/__([A-Z0-9_-]+)__/sU", function ($match) use($prefix)
{
return $prefix . strtolower($match[1]);
}, $join);
$this->options['join'][] = false !== stripos($join, 'JOIN') ? $join : $type . ' JOIN ' . $join;
}
return $this;
}
/**
* 查询SQL组装 union
*
* @access public
* @param mixed $union
* @param boolean $all
* @return Model
*/
public function union($union, $all = false)
{
if (empty($union)) {
return $this;
}
if ($all) {
$this->options['union']['_all'] = true;
}
if (is_object($union)) {
$union = get_object_vars($union);
}
// 转换union表达式
if (is_string($union)) {
$prefix = $this->tablePrefix;
// 将__TABLE_NAME__字符串替换成带前缀的表名
$options = preg_replace_callback("/__([A-Z0-9_-]+)__/sU", function ($match) use($prefix)
{
return $prefix . strtolower($match[1]);
}, $union);
} elseif (is_array($union)) {
if (isset($union[0])) {
$this->options['union'] = array_merge($this->options['union'], $union);
return $this;
} else {
$options = $union;
}
} else {
E(L('_DATA_TYPE_INVALID_'));
}
$this->options['union'][] = $options;
return $this;
}
/**
* 查询缓存
*
* @access public
* @param mixed $key
* @param integer $expire
* @param string $type
* @return Model
*/
public function cache($key = true, $expire = null, $type = '')
{
// 增加快捷调用方式 cache(10) 等同于 cache(true, 10)
if (is_numeric($key) && is_null($expire)) {
$expire = $key;
$key = true;
}
if (false !== $key) {
$this->options['cache'] = array(
'key' => $key,
'expire' => $expire,
'type' => $type
);
}
return $this;
}
/**
* 指定查询字段 支持字段排除
*
* @access public
* @param mixed $field
* @param boolean $except
* 是否排除
* @return Model
*/
public function field($field, $except = false)
{
if (true === $field) { // 获取全部字段
$fields = $this->getDbFields();
$field = $fields ? : '*';
} elseif ($except) { // 字段排除
if (is_string($field)) {
$field = explode(',', $field);
}
$fields = $this->getDbFields();
$field = $fields ? array_diff($fields, $field) : $field;
}
$this->options['field'] = $field;
return $this;
}
/**
* 调用命名范围
*
* @access public
* @param mixed $scope
* 命名范围名称 支持多个 和直接定义
* @param array $args
* 参数
* @return Model
*/
public function scope($scope = '', $args = null)
{
if ('' === $scope) {
if (isset($this->_scope['default'])) {
// 默认的命名范围
$options = $this->_scope['default'];
} else {
return $this;
}
} elseif (is_string($scope)) { // 支持多个命名范围调用 用逗号分割
$scopes = explode(',', $scope);
$options = array();
foreach ($scopes as $name) {
if (! isset($this->_scope[$name])) {
continue;
}
$options = array_merge($options, $this->_scope[$name]);
}
if (! empty($args) && is_array($args)) {
$options = array_merge($options, $args);
}
} elseif (is_array($scope)) { // 直接传入命名范围定义
$options = $scope;
}
if (is_array($options) && ! empty($options)) {
$this->options = array_merge($this->options, array_change_key_case($options));
}
return $this;
}
/**
* 指定查询条件 支持安全过滤
*
* @access public
* @param mixed $where
* 条件表达式
* @param mixed $parse
* 预处理参数
* @return Model
*/
public function where($where, $parse = null)
{
if (! is_null($parse) && is_string($where)) {
if (! is_array($parse)) {
$parse = func_get_args();
array_shift($parse);
}
$parse = array_map(array(
$this->db,
'escapeString'
), $parse);
$where = vsprintf($where, $parse);
} elseif (is_object($where)) {
$where = get_object_vars($where);
}
if (is_string($where) && '' != $where) {
$map = array();
$map['_string'] = $where;
$where = $map;
}
if (isset($this->options['where'])) {
$this->options['where'] = array_merge($this->options['where'], $where);
} else {
$this->options['where'] = $where;
}
return $this;
}
/**
* 指定查询数量
*
* @access public
* @param mixed $offset
* 起始位置
* @param mixed $length
* 查询数量
* @return Model
*/
public function limit($offset, $length = null)
{
if (is_null($length) && strpos($offset, ',')) {
list ($offset, $length) = explode(',', $offset);
}
$this->options['limit'] = intval($offset) . ($length ? ',' . intval($length) : '');
return $this;
}
/**
* 指定分页
*
* @access public
* @param mixed $page
* 页数
* @param mixed $listRows
* 每页数量
* @return Model
*/
public function page($page, $listRows = null)
{
if (is_null($listRows) && strpos($page, ',')) {
list ($page, $listRows) = explode(',', $page);
}
$this->options['page'] = array(
intval($page),
intval($listRows)
);
return $this;
}
/**
* 查询注释
*
* @access public
* @param string $comment
* 注释
* @return Model
*/
public function comment($comment)
{
$this->options['comment'] = $comment;
return $this;
}
/**
* 获取执行的SQL语句
*
* @access public
* @param boolean $fetch
* 是否返回sql
* @return Model
*/
public function fetchSql($fetch = true)
{
$this->options['fetch_sql'] = $fetch;
return $this;
}
/**
* 参数绑定
*
* @access public
* @param string $key
* 参数名
* @param mixed $value
* 绑定的变量及绑定参数
* @return Model
*/
public function bind($key, $value = false)
{
if (is_array($key)) {
$this->options['bind'] = $key;
} else {
$num = func_num_args();
if ($num > 2) {
$params = func_get_args();
array_shift($params);
$this->options['bind'][$key] = $params;
} else {
$this->options['bind'][$key] = $value;
}
}
return $this;
}
/**
* 设置模型的属性值
*
* @access public
* @param string $name
* 名称
* @param mixed $value
* 值
* @return Model
*/
public function setProperty($name, $value)
{
if (property_exists($this, $name)) {
$this->$name = $value;
}
return $this;
}
// by zhuxun, begin
/**
* 获取单条记录
*
* @access public
* @param string $sql
* SQL指令
* @param mixed $params
* SQL参数
* @return array
*/
public function fetch_row($sql, $params = array())
{
// 参数预处理
$this->__prepare($sql, $params);
// 剔除 limit
$sql = preg_replace('/LIMIT\s*\d+(\s*,\s*\d+)?/i', "", $sql);
// 加上 limit 限制
$sql = $sql . ' LIMIT 1';
// 执行查询
$data = $this->db->query($sql, false, true);
// 如果返回值为空, 则说明未查到记录
if (empty($data)) {
return array();
}
// 返回第一个数据结果集
return $data[0];
}
/**
* 获取记录列表
*
* @param string $sql
* SQL指令
* @param mixed $params
* SQL参数
* @param mixed $options
* 分页参数
* @return array
*/
public function fetch_array($sql, $params = array(), $options = null)
{
// 参数预处理
$this->__prepare($sql, $params);
// 如果分页参数不为空, 则
if (! empty($options)) {
// 剔除分页参数
$sql = preg_replace('/LIMIT\s*\d+(\s*,\s*\d+)?/i', "", $sql);
// 如果可选项为数组
if (is_array($options)) {
// 强制类型转换
$start = is_scalar($options[0]) ? (int) $options[0] : 0;
$limit = is_scalar($options[1]) ? (int) $options[1] : 0;
// 如果 $start 和 $limit 都小于等于 0
if (0 >= $start && 0 >= $limit) {
// do nothing
} else
if (0 >= $start || 0 >= $limit) { // 如果只有一个值
$sql = $sql . " LIMIT " . max($start, $limit);
} else { // 值正确
$sql = $sql . " LIMIT {$start}, {$limit}";
}
} else { // 如果参数非数组
$start = 0;
$limit = (int) $options;
$sql = $sql . " LIMIT {$start}, {$limit}";
}
}
// 执行
$data = $this->db->query($sql, false, true);
// 返回数据
return empty($data) ? array() : $data;
}
/**
* 获取数据结果
*
* @access public
* @param string $sql
* SQL指令
* @param mixed $params
* SQL参数
* @return array|int
*/
public function result($sql, $params = array())
{
// 参数预处理
$this->__prepare($sql, $params);
// 剔除 limit
$sql = preg_replace('/LIMIT\s*\d+(\s*,\s*\d+)?/i', "", $sql);
// 加上 limit 限制
$sql = $sql . ' LIMIT 1';
// 执行查询
$data = $this->db->query($sql, false, true);
// 如果返回值为空, 则说明未查到记录
if (empty($data)) {
return 0;
}
// 获取数组中第一个值
$result = reset($data[0]);
return $result;
}
/**
* 数据更新操作
*
* @access public
* @param string $sql
* SQL指令
* @param mixed $params
* SQL参数
* @return array
*/
public function update($sql, $params = array())
{
// 参数预处理
$this->__prepare($sql, $params);
// 执行查询
return $this->db->execute($sql, false, true);
}
public function insert($data = '', $options = array(), $replace = false)
{
return $this->add($data, $options, $replace);
}
public function insert_all($dataList, $options = array(), $replace = false)
{
return $this->addAll($dataList, $options, $replace);
}
/**
* 检查在 strict mode 可能出现的SQL异常
*
* @param array $data
* 入库数据
*/
private function __check_insert_data(&$data)
{
// 遍历所有字段
foreach ($this->fields['_type'] as $_f => $_t) {
// 检查 text 的默认值, 如果没有, 则赋空值
if (- 1 < stripos($_t, 'text') && ! isset($data[$_f])) {
$data[$_f] = '';
}
}
return true;
}
/**
* 执行SQL
*
* @param string $sql
* SQL 指令
* @param array $params
* SQL 参数
*/
public function execsql($sql, $params = array())
{
// 参数预处理
$this->__prepare($sql, $params);
// 执行查询
return $this->db->execute($sql, false, true);
}
/**
* 重新拼凑字段
*
* @param array $matches
* 匹配结果集
* @return string
*/
protected function _cb_pa($matches)
{
$field = strtolower($matches[2]);
$fs = explode('.', $field);
return '`' . implode('`.`', $fs) . '`' . $matches[3] . $matches[4];
}
/**
* 重新拼凑字段
*
* @param array $matches
* 匹配结果集
* @return string
*/
protected function _cb_pb($matches)
{
$field = strtolower($matches[2]);
$fs = explode('.', $field);
return '`' . implode('`.`', $fs) . '`' . $matches[3] . $matches[4] . ' ';
}
/**
* 预处理参数
*
* @param string $sql
* SQL指令
* @param array $params
* 参数
* @return boolean
*/
private function __prepare(&$sql, $params)
{
// 处理字段
$sql = preg_replace_callback('/(([a-z0-9_\.]+)(\s*)(=|>|<|!))/i', array(
$this,
'_cb_pa'
), $sql);
$sql = preg_replace_callback('/(([a-z0-9_\.]+)(\s+)(like|not like|in|not in|between|not between))(\s+)/i', array(
$this,
'_cb_pb'
), $sql);
// 匹配占位符以及参数
$this->__check_params($sql, $params);
// 解析sql
$sql = $this->parseSql($sql, false);
// 记录SQL日志
sql_record($sql, $params);
// 数据绑定
$this->db->pdoBind($params);
return true;
}
/**
* 检查参数, 重新拼凑SQL
*
* @param string $sql
* SQL语句
* @param array $params
* 参数
* @return boolean
*/
private function __check_params(&$sql, &$params)
{
// 如果参数为空
if (empty($params)) {
return true;
}
// 根据占位符 ? 来切分字串
$sql_ar = explode('?', $sql);
// 重新拼接的参数数组
$rparams = array();
// 遍历切分后的 SQL 字串
foreach ($sql_ar as $_k => &$_v) {
// 忽略第一个
if (0 == $_k) {
continue;
}
$pk = $_k - 1;
// 如果当前参数为数组
if (! is_array($params[$pk])) {
$_v = '?' . $_v;
$rparams[] = $params[$pk];
continue;
}
// 如果标记不是数组
if (')' != substr($_v, 0, 1)) {
E('_ERROR_SQL_PARAMS_');
return false;
}
// 编辑所有参数
$ks = array();
foreach ($params[$pk] as $_pv) {
$rparams[] = $_pv;
$ks[] = '?';
}
$_v = implode(',', $ks) . $_v;
}
unset($_v);
// 重新拼接 SQL 语句
$sql = implode('', $sql_ar);
$params = $rparams;
return true;
}
// end.
}