Code of the single-sample mode in php design mode; php design mode _ PHP Tutorial

Source: Internet
Author: User
Tags learn php programming protected constructor
Php design mode: Code of the Singleton mode, and php design mode. Single-sample code of php design mode, single-sample code of php design mode for your reference, the specific content is as follows: php *** php design mode Singleton mode * clas php design mode Singleton mode code, php design mode

For your reference, the example of the php design mode Singleton mode is as follows:

<? Php/*** php design mode singleton mode */class Fruit {private static $ instanceMap = array (); // protected getter for singleton instances protected static function getSingleton ($ className) {// ensure the Singleton mode and the if (! Isset (self ::$ instanceMap [$ className]) {$ object = new $ className; // Make sure this object inherit from Singleton if ($ object instanceof Fruit) {self:: $ instanceMap [$ className] = $ object; var_dump ($ object);} else {throw SingletonException ("Class '$ className' do not inherit from Singleton! ") ;}} Return self: $ instanceMap [$ className];} // protected constructor to prevent outside instantiation protected function _ construct () {}// denie cloning of singleton objects public final function _ clone () {trigger_error ('it is impossible to clone singleton ', E_USER_ERROR );}} class Apple extends Fruit {protected $ rndId; public function _ construct () {$ this-> rndId = rand ();} public function whatAmI () {echo 'I am a Apple ('. $ this-> rndId. ')
';} Public static function getInstance () {// echo get_class (); return Fruit: getSingleton (get_class () ;}} class GreenApple extends Apple {public function whatAmI () {echo 'I am a GreenApple ('. $ this-> rndId. ')
';} Public static function getInstance () {return Fruit: getSingleton (get_class () ;}$ apple1 = Apple: getInstance (); // var_dump ($ apple1); $ apple2 = GreenApple: getInstance (); $ apple1-> whatAmI (); // shocould echo 'I am a Apple (some number) $ apple2-> whatAmI (); // shocould echo 'I am a GreenApple (some number) $ apple1 = Apple: getInstance (); $ apple2 = GreenApple :: getInstance (); // guaranteed Singleton mode $ apple1-> whatAmI (); // shocould echo 'I am a Apple (same number as above) $ apple2-> whatAmI (); // shocould echo 'I am a GreenApple (same number as above) // $ a = clone $ apple1; // this showould fail // $ B = clone $ apple2; // this showould fail

The above is all the content of this article. I hope it will help you learn php programming.

For your reference, the example of the single-sample mode of the design mode of the Alternative php is as follows: php/*** single-sample mode of the php design mode */clas...

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.