phpsingleton单例模式入门例子
时间:2021-07-01 10:21:17
帮助过:19人阅读
- class CC
- {
- //单例模式
- private static $ins;
- public static function singleton()
- {
- if (!isset(self::$ins)){
- $c = __CLASS__;
- self::$ins = new $c;
- }
- return self::$ins;
- }
- public function EventResult($Id)
- {
- return $Id;
- }
- }
- ?>
2、index.php文件:
-
- 测试php单例模式
-
-
-
- require 'common.php';
- $objCC=CC::singleton();
- $r=$objCC->EventResult(7);
- print_r($objCC);
- echo $r."";
- ?>
|