php设计模式之单例、多例设计模式的应用分析_php技巧
单例(Singleton)模式和不常见的多例(Multiton)模式控制着应用程序中类的数量。如模式名称,单例只能实例化一次,只有一个对象,多例模式可以多次实例化。
基于Singleton的特性,我们经常用Singleton配置应用程序并定义应用程序中可能随时访问的变量。但有时并不推荐使用Singleton,因为它生成了一个全局状态且
该单一根对象没有封装任何系统功能。多数情况下,会使单元测试和调试变得困难。读者根据情况自行决定。
代码示例:
class SingletonExample{
private function __construct(){}//防止直接实例化
public static function getInstance(){ //不与任何对象有关联
static $instance=null; //调用此函数的所有代码共享该变量,不必要让其是类的静态变量
if($instance==null){
$instance=new SingletonExample();
}
return $instance;
}
}
$obj1=SingletonExample::getInstance();
$obj2=SingletonExample::getInstance();
var_dump($obj1===$obj2);// true 是同一个实例
?>
Multiton与singleton相似,不同的是后者需要getInstance()函数传递关键值。
对于给定的关键值只会存在唯一的对象实例,如果有多个节点,每个节点拥有唯一的表识符,且各个节点在某单次执行(如cms里的节点)可能出现多次,那么就可以用Multiton模式实现这些节点啊,Multiton节省内存,并确保同一个对象的多个实例不发生冲突.
示例:
class MultitonExample{
private function __construct(){}//防止直接实例化
public static function getInstance($key){
static $instance=array();
if(!array_key_exists($key,$instance)){
$instance[$key]=new SingletonExample();
}
return $instance($key);
}
};
?>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

As a modern and efficient programming language, Go language has rich programming paradigms and design patterns that can help developers write high-quality, maintainable code. This article will introduce common programming paradigms and design patterns in the Go language and provide specific code examples. 1. Object-oriented programming In the Go language, you can use structures and methods to implement object-oriented programming. By defining a structure and binding methods to the structure, the object-oriented features of data encapsulation and behavior binding can be achieved. packagemaini

There are three ways to implement the singleton mode in Golang: lazy mode, hungry mode and double check mode. Next, we will introduce these three implementation methods in detail and provide specific code examples. 1. Lazy mode Lazy mode means that a singleton instance is created only when it is called for the first time. The following is a sample code of lazy mode: packagesingletonimport("sync")typeSingletonstru

PHP is a widely used and very popular programming language. PHP is a very important part of today's web applications. Design patterns play a vital role in developing PHP applications. Design pattern is a template for solving problems that can be reused in different environments. It helps us write better code and make the code more reliable, maintainable and scalable. In this article, we will explore some commonly used design patterns in PHP and how to implement them. Singleton Pattern Singleton pattern is a creation pattern that allows

PHP design patterns include: 1. Singleton mode, which ensures that a class has only one instantiated object; 2. Factory mode, which encapsulates the instantiation process of the object in a factory class; 3. Abstract factory mode, which is similar to a factory Pattern of creating objects; 4. Observer pattern, realizing one-to-many dependencies between objects; 5. Adapter pattern, converting the interface of one class into the interface of another class; 6. Decorator pattern, dynamically Add some additional functions to an object; 7. Iterator pattern; 8. Strategy pattern; 9. Template method pattern, etc.

Introduction to PHP core design patterns and practices: Design patterns are commonly used problem-solving templates in software development. They provide a reusable solution that can help us follow best practices and good software design principles during the development process. . As a widely used programming language, PHP also has many common and useful design patterns that can be used in core development. This article will introduce several common PHP design patterns and provide relevant code examples. 1. Singleton mode (Singleton) Singleton mode is a type that only allows

With the continuous development of technology, design patterns are becoming more and more important in software development. As the latest PHP version, PHP7.0 also integrates many design patterns. In this article, we will explore the design patterns in PHP7.0 to help PHP programmers better understand and apply these patterns. Singleton pattern The singleton pattern is a creational pattern that ensures that a class has only one instance and provides a global access point. In PHP7.0, you can use the __construct method and static method to

PHP is a programming language widely used in the field of web development, and design patterns are a problem-solving method widely used in software engineering. The application of design patterns can improve the performance of software in many aspects such as scalability, maintainability, and reusability, and can complete tasks faster and reduce code duplication. In PHP, design patterns are often used to improve the performance of the framework and better organize and manage code. Because the framework needs to handle a large amount of business logic and complex business processes, design patterns can help developers

Title: Guaranteeing Singleton Uniqueness in Golang In programming, the singleton pattern is a common design pattern used to ensure that a class has only one instance and provides a global access point. In Golang, we can implement the singleton pattern by using the Once type and sync.Once in the sync package to ensure the uniqueness of the singleton. 1.sync.Once implements singleton mode. The following is a sample code that uses sync.Once to implement singleton mode: packagesingle
