Simple usage of PHP in a single state mode _php tips

Source: Internet
Author: User

This article illustrates the simple use of PHP's single State pattern. Share to everyone for your reference, specific as follows:

A single State class is a class that can only be instantiated once

<?php
/* Author: Shyhero
* *
class demo{
    private static $ob =null;
    Private $name;
    Private $age;
    Private Function __construct () {
    } public
    static function Makeob () {
      var_dump ($a);
      if (self:: $ob = = null) {
        $c = __class__;
        Self:: $ob = new $c ();
      }
      Return self:: $ob;
    }
    Public Function __set ($tName, $value) {
      $this-> $tName = $value;
    }
}
$a = Demo::makeob ();
Var_dump ($a);

For more information about PHP interested readers can view the site topics: "Php+mysql database operations to get Started", "PHP basic Grammar Introductory Course", "PHP Operations and Operator Usage Summary", "PHP object-oriented Program Design Introductory Course", "PHP Network Programming Skills Summary", " PHP array Operation tips Encyclopedia, PHP string (String) Usage summary and PHP Common database operation Skills Summary

I hope this article will help you with the PHP program design.

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.