I have always felt that frameworks, versions, and even languages really don’t matter to a coder. Mastering a particularly advanced framework or a new, minority language really doesn’t matter, because you It’s okay, it’s okay if I want to spend time, everyone is like this. Therefore, the basic ones are particularly important, namely algorithms and data structures, and then good design patterns.
Single case mode
Single case mode features
$_instance must be declared as a static private variable
Constructors and clone functions must be declared as private. This is to prevent external programs from adding new classes and thus losing the meaning of the singleton mode.
The getInstance() method must be declared as public. This method must be called to return a reference to a unique instance
:: The operator can only access static variables or static functions
Single PHP The example mode is relative, because PHP's interpretation and execution mechanism causes all related resources to be recycled after each PHP page is interpreted and executed.
<?php header("Content-type: text/html; charset=utf-8"); class single{ public static $arr=array('host'=>'XXX','user'=>'XXX','password'=>'XXX'); private static $_instance =null; private function __construct(){} private function __clone(){} static public function getInstance(){ if(self::$_instance== null || isset(self::$_instance)){ self::$_instance= new self; } return self::$_instance; } public function showSomething(){ return self::$arr; } } /////////////////////test/////////////// $a=single::getInstance(); print_r(single::getInstance()->showSomething()); ?>
Factory pattern
The factory class is a class specially used to create other objects. The factory class is very important in the practice of polymorphic programming. It allows dynamic replacement of classes and modification of configurations, making the application more flexible. Mastering the factory pattern is essential for web development.
Features:
The factory pattern is usually used to return different classes similar to interfaces. A common use of factories is to create polymorphic providers.
Usually the factory pattern has a key construct, which is a static method generally named factory. This static method can accept any number of parameters and must return an object.
The factory pattern is further divided into:
Simple Factory Pattern
Factory Method Pattern
Abstract Factory Pattern )
Simple factory mode: used to produce any product in the same hierarchical structure. There is nothing you can do about adding new products
Factory model: used to produce fixed products in the same hierarchical structure. (Supports adding any product)
Abstract factory: used to produce all products of different product families. (There is nothing you can do about adding new products; support adding product families)
<?php //简单工厂模式 header("Content-type: text/html; charset=utf-8"); class simpale{ public function calculate($num1,$num2,$operator){ try { $result=0; switch ($operator){ case '+': $result= $num1+$num2; break; case '-': $result= $num1-$num2; break; case '*': $result= $num1*$num2; break; case '/': if ($num2==0) { throw new Exception("除数不能为0"); } $result= $num1/$num2; break; } return $result; } catch (Exception $e){ echo "您输入有误:".$e->getMessage(); } } } //工厂方法模式 interface people { function jiehun(); } //定义接口 class man implements people{ public $ring=null; public $car=null; public $house=null; public function getAllthing(){ $this->ring='10000'; $this->car='100000'; $this->house='1000000'; } public function jiehun() { if($this->ring && $this->car && $this->house) echo '我可以结婚了<br>'; else echo '我是臭屌丝,还不能结婚<br>'; } } class women implements people { public $face='ugly'; public function getAllthing(){ $this->face='nice'; } public function jiehun() { if($this->face =='nice') echo '我可以结婚了<br>'; else echo '我是臭屌丝,还不能结婚<br>'; } } interface createpeople { // 注意了,这里是工厂模式本质区别所在,将对象的创建抽象成一个接口。 public function create(); } class FactoryMan implements createpeople{ public function create() { return new man; } } class FactoryWomen implements createpeople { public function create() { return new women; } } class Client { // 简单工厂里的静态方法 public function test() { $Factory = new FactoryMan; $man = $Factory->create(); $man->jiehun(); $Factory = new FactoryWomen; $woman = $Factory->create(); $woman->getAllthing(); $woman->jiehun(); } } /////////////test//////////// $f = new Client; $f->test(); //抽象模式就是在工厂模式下接口中添加相应的不同方法即可 ?>
Strategy Pattern
Strategy pattern is the behavior pattern of an object, intended to encapsulate a set of algorithms. Dynamically select the required algorithm and use it.
Strategy mode refers to a mode involving decision-making control in the program. The strategy pattern is very powerful because the core idea of this design pattern itself is the polymorphic idea of object-oriented programming.
Three characteristics of the strategy pattern:
Define the abstract role class (define the common abstract method of each implementation)
Define the specific strategy class (the common method of the specific implementation parent class)
Define environment role class (privately declare abstract role variables, overload construction methods, execute abstract methods)
<?php abstract class baseAgent { //抽象策略类 abstract function PrintPage(); } //用于客户端是IE时调用的类(环境角色) class ieAgent extends baseAgent { function PrintPage() { return 'IE'; } } //用于客户端不是IE时调用的类(环境角色) class otherAgent extends baseAgent { function PrintPage() { return 'not IE'; } } class Browser { //具体策略角色 public function call($object) { return $object->PrintPage (); } } ///////////////test//////////////// $bro = new Browser (); echo $bro->call (new ieAgent );
Related recommendations:
Combination of PHP design patterns Pattern and case sharing
Common PHP design pattern sharing
Introduction to commonly used design patterns in PHP and their usage examples
The above is the detailed content of Simple practical examples of various PHP design patterns. For more information, please follow other related articles on the PHP Chinese website!

如何在PHP后端功能开发中合理应用设计模式?设计模式是一种经过实践证明的解决特定问题的方案模板,可以用于构建可复用的代码,在开发过程中提高可维护性和可扩展性。在PHP后端功能开发中,合理应用设计模式可以帮助我们更好地组织和管理代码,提高代码质量和开发效率。本文将介绍常用的设计模式,并给出相应的PHP代码示例。单例模式(Singleton)单例模式适用于需要保

如何通过编写代码来学习和运用PHP8的设计模式设计模式是软件开发中常用的解决问题的方法论,它可以提高代码的可扩展性、可维护性和重用性。而PHP8作为最新版的PHP语言,也引入了许多新特性和改进,提供更多的工具和功能来支持设计模式的实现。本文将介绍一些常见的设计模式,并通过编写代码来演示在PHP8中如何运用这些设计模式。让我们开始吧!一、单例模式(Sing

本篇文章给大家带来了关于golang设计模式的相关知识,其中主要介绍了职责链模式是什么及其作用价值,还有职责链Go代码的具体实现方法,下面一起来看一下,希望对需要的朋友有所帮助。

随着数据的增长和复杂性的不断提升,ETL(Extract、Transform、Load)已成为数据处理中的重要环节。而Go语言作为一门高效、轻量的编程语言,越来越受到人们的热捧。本文将介绍Go语言中常用的ETL设计模式,以帮助读者更好地进行数据处理。一、Extractor设计模式Extractor是指从源数据中提取数据的组件,常见的有文件读取、数据库读取、A

单例模式是一种常见的设计模式,它在系统中仅允许创建一个实例来控制对某些资源的访问。在 Go 语言中,实现单例模式有多种方式,本篇文章将带你深入掌握 Go 语言中的单例模式实现。

随着JavaScript的不断发展和应用范围的扩大,越来越多的开发人员开始意识到设计模式和最佳实践的重要性。设计模式是一种被证明在某些情况下有用的软件设计解决方案。而最佳实践则是指在编程过程中,我们可以应用的一些最佳的规范和方法。在本文中,我们将探讨JavaScript中的设计模式和最佳实践,并提供一些具体的代码示例。让我们开始吧!一、JavaScript中

设计模式的六大原则:1、单一职责原则,其核心就是控制类的粒度大小、将对象解耦、提高其内聚性;2、开闭原则,可以通过“抽象约束、封装变化”来实现;3、里氏替换原则,主要阐述了有关继承的一些原则;4、依赖倒置原则,降低了客户与实现模块之间的耦合;5、接口隔离原则,是为了约束接口、降低类对接口的依赖性;6、迪米特法则,要求限制软件实体之间通信的宽度和深度。

在C#开发中,设计模式和架构选择是至关重要的。良好的设计模式和合适的架构选择可以大大提高软件的可维护性、扩展性和性能。本文将讨论一些在C#开发中常用的设计模式和架构选择,并给出一些建议。设计模式是解决特定问题的通用解决方案,它们可以帮助开发人员避免重复造轮子,提高代码的可重用性和可读性。在C#开发中,有许多常用的设计模式,如单例模式、工厂模式、观察者模式等。


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

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
