Php Singleton mode implementation method analysis _ PHP Tutorial

Source: Internet
Author: User
Php Singleton mode implementation method analysis. Php Singleton mode implementation method analysis this article describes how to implement the Singleton mode of php. Share it with you for your reference. The details are as follows :? Php *** @ copyright2013maguowei.com * @ auth php Singleton mode implementation method analysis

This article describes how to implement the php Singleton mode. Share it with you for your reference. The details are as follows:

 * // *** Singleton mode * Class Single */class Single {private $ name; private static $ single; private function _ construct () {} public static function init () {if (empty (self: $ single) {self ::$ single = new Single ();} return self :: $ single;} public function getName () {return $ this-> name;} public function setName ($ name) {$ this-> name = $ name ;}} $ s = Single: init (); $ s-> setName ('HHhH'); echo '$ s :'. $ s-> getName (); unset ($ s); $ m = Single: init (); echo '$ m :'. $ m-> getName ();

I hope this article will help you with php programming.

This article describes how to implement the php Singleton mode. Share it with you for your reference. The details are as follows :? Php/*** @ copyright 2013 maguowei.com * @ auth...

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.