Single-instance mode-php implementation-PHP Tutorial

Source: Internet
Author: User
Single-instance mode: php implementation. The Singleton mode ensures that a class has only one instance. 1. the static member variable stores the unique instance of the class. 2. the constructor and cloning method are declared to be private to prevent the new instance from being 3, provides a singleton mode to ensure that a class has only one instance;

1. the static member variable saves the unique instance of the class.

2. declare the constructor and clone method as private to prevent a new instance.

3. provide a public static method to access this instance and return the reference of a unique instance.

Class InstanceDemo

{

Private static $ _ instance; // The static member variable to save the unique instance.

Private function _ construct () // Constructor

{

Echo 'I am construceted ';

}

Public static function GetInstance ()

{

If (! Isset (self ::$ _ instance ))

{

$ C =__ CLASS __;

Self: $ _ instance = new $ c; // new self ()

}

Return self: $ _ instance;

}

// Overwrite the _ clone () method to disable cloning.

Private function _ clone ()

{

Echo "clone prohibited ";

}

Function test ()

{

Echo ("test instance ");

}

}

// Call the static common method to obtain a unique instance

$ Test = InstanceDemo: GetInstance ();

$ Test-> test ();

// Clone prohibited

$ Test_clone = clone $ test;

?>

Lifecycle 1, static member variables save the unique instance of the class 2, declare the constructor and clone method as private, prevent new instance 3, provide...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.