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

php单例模式入门例子

程序员文章站 2022-04-11 11:53:54
...
  1. class mysql{
  2. privete static $instance ;//保存实例
  3. //构造函数声明为private, 防止直接创建对象
  4. privete function __construct(){
  5. // 实例化
  6. }
  7. //单例方法, 判断是否已经实例化,只实例化一次
  8. public static function getInstance (){
  9. if(!isset( self::$instance )){
  10. self ::$instance = new self();
  11. }
  12. return self:: $instance;
  13. }
  14. //防止克隆对象
  15. private function __clone (){
  16. trigger_error ("not allow to clone.");
  17. }
  18. function test(){
  19. echo "test" ;
  20. }
  21. }
  22. $conn = mysql::getInstance ();
  23. $conn->test ();
  24. ?>
复制代码