@@ -17,24 +17,42 @@ class LaravelTwStreetname
17
17
private static $ countrys ;
18
18
private static $ streets ;
19
19
private static $ zipCode ;
20
+ private static $ cache ;
20
21
21
22
private static function getInstance ()
22
23
{
23
24
if (!isset (self ::$ instance )) {
24
25
$ class = __CLASS__ ;
25
26
self ::$ instance = new $ class ();
26
27
//先載載入快取
27
-
28
- self ::$ originData = apc_fetch ('LaravelTwStreetnameOrigin ' );
29
- self ::$ citys = apc_fetch ('LaravelTwStreetnameCitys ' );
30
- self ::$ countrys = apc_fetch ('LaravelTwStreetnameCountrys ' );
31
- self ::$ streets = apc_fetch ('LaravelTwStreetnameStreets ' );
32
- self ::$ zipCode = apc_fetch ('LaravelTwStreetnameZipCode ' );
28
+ if (function_exists ('opcache_compile_file ' ))
29
+ {
30
+ self ::$ cache = 'opcache ' ;
31
+ opcache_compile_file (dirname (__FILE__ ) . "/LaravelTwStreetname.php " );
32
+ }
33
+ else if (function_exists ('apc_fetch ' ))
34
+ {
35
+ self ::$ cache = 'apcache ' ;
36
+ self ::$ originData = apc_fetch ('LaravelTwStreetnameOrigin ' );
37
+ self ::$ citys = apc_fetch ('LaravelTwStreetnameCitys ' );
38
+ self ::$ countrys = apc_fetch ('LaravelTwStreetnameCountrys ' );
39
+ self ::$ streets = apc_fetch ('LaravelTwStreetnameStreets ' );
40
+ self ::$ zipCode = apc_fetch ('LaravelTwStreetnameZipCode ' );
41
+ }
42
+ else
43
+ {
44
+ self ::$ cache = 'none ' ;
45
+ }
46
+
33
47
//載入街道Json資料
34
48
if (!is_array (self ::$ originData )) {
35
49
$ streetString = file_get_contents (dirname (__FILE__ ) . "/address_data.json " );
36
50
self ::$ originData = json_decode ($ streetString , true );
37
- apc_store ('LaravelTwStreetnameOrigin ' , self ::$ originData );
51
+ if (self ::$ cache =='apcache ' )
52
+ {
53
+ apc_store ('LaravelTwStreetnameOrigin ' , self ::$ originData );
54
+ }
55
+
38
56
}
39
57
//載入郵遞區號Json資料
40
58
if (!is_array (self ::$ zipCode )) {
@@ -45,7 +63,10 @@ private static function getInstance()
45
63
$ temp [$ val ['country ' ]] = $ val ['mailcode ' ];
46
64
}
47
65
self ::$ zipCode = $ temp ;
48
- apc_store ('LaravelTwStreetnameZipCode ' , self ::$ zipCode );
66
+ if (self ::$ cache =='apcache ' )
67
+ {
68
+ apc_store ('LaravelTwStreetnameZipCode ' , self ::$ zipCode );
69
+ }
49
70
}
50
71
51
72
//初始化資料
@@ -56,14 +77,20 @@ private static function getInstance()
56
77
self ::$ citys [] = $ val ;
57
78
}
58
79
}
59
- apc_store ('LaravelTwStreetnameCitys ' , self ::$ citys );
80
+ if (self ::$ cache =='apcache ' )
81
+ {
82
+ apc_store ('LaravelTwStreetnameCitys ' , self ::$ citys );
83
+ }
60
84
}
61
85
//載入鄉鎮區
62
86
if (!is_array (self ::$ countrys )) {
63
87
foreach (self ::$ citys as $ key => $ val ) {
64
88
self ::$ countrys [$ val ['uid ' ]] = self ::searchLink ($ val ['uid ' ]);
65
89
}
66
- apc_store ('LaravelTwStreetnameCountrys ' , self ::$ countrys );
90
+ if (self ::$ cache =='apcache ' )
91
+ {
92
+ apc_store ('LaravelTwStreetnameCountrys ' , self ::$ countrys );
93
+ }
67
94
}
68
95
//載入街道
69
96
if (!is_array (self ::$ streets )) {
@@ -72,7 +99,10 @@ private static function getInstance()
72
99
self ::$ streets [$ val ['uid ' ]] = self ::searchLink ($ val ['uid ' ]);
73
100
}
74
101
}
75
- apc_store ('LaravelTwStreetnameStreets ' , self ::$ streets );
102
+ if (self ::$ cache =='apcache ' )
103
+ {
104
+ apc_store ('LaravelTwStreetnameStreets ' , self ::$ streets );
105
+ }
76
106
}
77
107
}
78
108
}
@@ -143,4 +173,4 @@ public static function getCode($country)
143
173
self ::getInstance ();
144
174
return (isset (self ::$ zipCode [$ country ])) ? self ::$ zipCode [$ country ] : '' ;
145
175
}
146
- }
176
+ }
0 commit comments