PHP設計模式之單例模式

來源:互聯網
上載者:User

標籤:style   class   blog   c   code   java   

單例模式(Singleton pattern)是一種建立型模式,它會限制應用程式,使其只能建立某個類類型的單一執行個體。舉例來說,一個Web網站將會需要一個資料庫連接對象,但是應該有且只有一個,因此我們需要使用單例模式來實現。

eg:

<?phpclass Config{    static private $_instance = null; //確保對於一個特定類來說只存在一個單一的執行個體    private $_settings = array();        private function __construct(){}//防止new出來一個新執行個體    private function __clone(){} //防止clone來建立一個新執行個體    static funcitn getInstance(){          if(self::$_instance == null){              self::$_instance = new Config();          }          return self::$_instance;    }    function set($index, $value){         $this->_settings[$index] = $value;   }    function get($index){          return $this->_settings[$index];    }}?>

使用Config類

建立config類

$CONFIG = Config::getInstance();

如果這個對象是這個類的第一個對象,那麼將會建立一個新的類的執行個體,並且賦值給內部的私人屬性$_instance,並且返回結果。否則使用同一個執行個體返回

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.