码迷,mamicode.com
首页 > 其他好文 > 详细

多例模式

时间:2017-01-07 10:02:40      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:get   div   image   type   tar   array   close   tco   color   

 

技术分享

 

技术分享
 1 <?php
 2 
 3 class Multiton
 4 {
 5     private static $conn = [];
 6 
 7     private function __construct()
 8     {
 9 
10     }
11 
12     private function __clone()
13     {
14 
15     }
16 
17     private function __wakeup()
18     {
19 
20     }
21 
22     public static function getConn($type)
23     {
24         if (!array_key_exists($type, self::$conn)) {
25             self::$conn[$type] = new self();
26         }
27 
28         return self::$conn[$type];
29     }
30 }
View Code

 

多例模式

标签:get   div   image   type   tar   array   close   tco   color   

原文地址:http://www.cnblogs.com/hangtt/p/6258686.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!