欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php singleton单例模式入门例子

程序员文章站 2022-06-15 22:30:12
...
  1. class CC
  2. {
  3. //单例模式
  4. private static $ins;
  5. public static function singleton()
  6. {
  7. if (!isset(self::$ins)){
  8. $c = __CLASS__;
  9. self::$ins = new $c;
  10. }
  11. return self::$ins;
  12. }
  13. public function EventResult($Id)
  14. {
  15. return $Id;
  16. }
  17. }
  18. ?>
复制代码

2、index.php文件:

  1. 测试php单例模式
  2. require 'common.php';
  3. $objCC=CC::singleton();
  4. $r=$objCC->EventResult(7);
  5. print_r($objCC);
  6. echo $r."";
  7. ?>
复制代码