码迷,mamicode.com
首页 > Web开发 > 详细

PHP 单例

时间:2014-04-29 16:30:19      阅读:415      评论:0      收藏:0      [点我收藏+]

标签:com   http   class   blog   style   div   img   code   java   javascript   tar   

bubuko.com,布布扣
 1 <?php
 2 
 3 session_start();
 4 
 5 class CartTool {
 6     private static $ins = null;
 7     private $items =array();
 8     public $sign=0;
 9 
10     final protected function __construct(){
11         $this->sign=mt_rand(1,100000);
12     }
13 
14     final protected function __clone(){
15 
16     }
17 
18     protected static function getIns(){
19         if(!(self::$ins instanceof self)){
20             self::$ins = new self();
21         }
22         return self::$ins;
23     }
24 
25     public static function getCart(){
26         if(!isset($_SESSION[‘cart‘]) || !($_SESSION[‘cart‘] instanceof self)){
27             $_SESSION[‘cart‘]=self::getIns();
28 
29         }
30 
31         return $_SESSION[‘cart‘];
32     }
33 
34 
35 }
36 
37 
38 print_r(CartTool::getCart());
39 
40 ?>
bubuko.com,布布扣

 

PHP 单例,布布扣,bubuko.com

PHP 单例

标签:com   http   class   blog   style   div   img   code   java   javascript   tar   

原文地址:http://www.cnblogs.com/ligangming/p/3698240.html

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