search
HomeBackend DevelopmentPHP Tutorialcompose php design pattern Composite combination pattern

复制代码 代码如下:


/**
* Combination mode
*
* Combine objects into a tree structure to represent the "part-whole" hierarchy, allowing customers to use single objects and composite objects consistently
*/ 
abstract class MenuComponent 

public function add($component){}
public function remove($component){}
public function getName(){}
public function getUrl(){}
public function display(){}
}
class Menu extends MenuComponent
{
private $_items = array();
private $_name = null;
public function __construct($name)
{
$this->_name = $name;
}
public function add($component)
{
$this->_items[] = $component;
}
public function remove($component)
{
$key = array_search($component,$this->_items);
if($key !== false) unset($this->_items[$key]);
}
public function display()
{
echo "-- ".$this->_name." ---------
";
foreach($this->_items as $item)
{
$item->display();
}
}
}
class Item extends MenuComponent
{
private $_name = null;
private $_url = null;
public function __construct($name,$url)
{
$this->_name = $name;
$this->_url = $url;
}
public function display()
{
echo $this->_name."#".$this->_url."
";
}
}
class Client
{
private $_menu = null;
public function __construct($menu)
{
$this->_menu = $menu;
}
public function setMenu($menu)
{
$this->_menu = $menu;
}
public function displayMenu()
{
$this->_menu->display();
}
}
// 实例一下
// 创建menu
$subMenu1 = new Menu("sub menu1");
$subMenu2 = new Menu("sub menu2");
$subMenu3 = new Menu("sub menu3");
$item1 = new Item("163","www.163.com");
$item2 = new Item("sina","www.sina.com");
$subMenu1->add($item1);
$subMenu1->add($item2);
$item3 = new Item("baidu","www.baidu.com");
$item4 = new Item("google","www.google.com");
$subMenu2->add($item3);
$subMenu2->add($item4);
$allMenu = new Menu("All Menu");
$allMenu->add($subMenu1);
$allMenu->add($subMenu2);
$allMenu->add($subMenu3);
$objClient = new Client($allMenu);
$objClient->displayMenu();
$objClient->setMenu($subMenu2);
$objClient->displayMenu();

以上就介绍了compose php设计模式 Composite 组合模式,包括了compose方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何利用React和Docker Compose部署复杂的前后端应用如何利用React和Docker Compose部署复杂的前后端应用Sep 26, 2023 am 10:17 AM

如何利用React和DockerCompose部署复杂的前后端应用概述在现代软件开发中,使用容器化技术部署应用程序已经成为一种主流和推荐的做法。其中,Docker是一种流行的容器化部署工具,React是一个强大的JavaScript库,用于构建用户界面。本文将介绍如何使用React和DockerCompose来部署复杂的前后端应用。一、准备工作在开始之前

使用Docker Compose轻松搭建PHP开发环境使用Docker Compose轻松搭建PHP开发环境Oct 12, 2023 am 11:36 AM

使用DockerCompose轻松搭建PHP开发环境随着时代的发展,开发环境搭建越来越迅速高效。而DockerCompose作为一种容器编排工具,可以让我们轻松地配置和管理多个Docker容器,从而快速搭建PHP开发环境。本文将介绍如何使用DockerCompose搭建PHP开发环境,并提供具体的代码示例。准备工作首先,我们需要安装Docker和Doc

使用Docker Compose、Nginx和MariaDB构建高可用性的PHP应用程序集群使用Docker Compose、Nginx和MariaDB构建高可用性的PHP应用程序集群Oct 12, 2023 am 08:23 AM

使用DockerCompose、Nginx和MariaDB构建高可用性的PHP应用程序集群引言:随着互联网的普及,Web应用程序的开发和部署变得更加复杂。为了提高Web应用程序的可用性和可扩展性,很多开发者开始使用容器化技术来构建高可用性的应用程序集群。本文将介绍如何使用DockerCompose、Nginx和MariaDB来构建一个高可用性的PHP应用

怎么使用Docker Compose实现nginx负载均衡怎么使用Docker Compose实现nginx负载均衡May 15, 2023 pm 09:37 PM

以docker的网络管理,容器的ip设置为基础知识实现nginx负载均衡查看所有docker网络dockernetworkls/*networkidnamedriverscopeb832b168ca9abridgebridgelocal373be82d3a6acomposetest_defaultbridgelocala360425082c4hosthostlocal154f600f0e90nonenulllocal*///composetest_default是上一篇介绍compose时,do

如何使用Docker的Compose实现nginx负载均衡如何使用Docker的Compose实现nginx负载均衡May 11, 2023 pm 04:13 PM

以docker的网络管理,容器的ip设置为基础知识实现nginx负载均衡查看所有docker网络dockernetworkls/*networkidnamedriverscopeb832b168ca9abridgebridgelocal373be82d3a6acomposetest_defaultbridgelocala360425082c4hosthostlocal154f600f0e90nonenulllocal*///composetest_default是上一篇介绍compose时,do

docker compose如何安装redis集群docker compose如何安装redis集群May 28, 2023 am 10:07 AM

一、redis配置信息模板文件名:redis-cluster.tmpl#redis端口port${PORT}#redis访问密码requirepass123456#redis访问Master节点密码masterauth123456#关闭保护模式protected-modeno#开启集群cluster-enabledyes#集群节点配置cluster-config-filenodes.conf#超时cluster-node-timeout5000#集群节点IPhost模式为宿主机IP#cluste

通过Docker Compose、Nginx和MariaDB实现PHP应用程序的持续交付通过Docker Compose、Nginx和MariaDB实现PHP应用程序的持续交付Oct 12, 2023 pm 12:06 PM

通过DockerCompose、Nginx和MariaDB实现PHP应用程序的持续交付概述:随着云计算和容器化技术的迅速发展,越来越多的应用程序开始采用容器化来实现快速交付和部署。本文将介绍如何使用DockerCompose、Nginx和MariaDB来搭建一个简单的PHP应用程序,并实现持续交付的过程。同时,我们将给出具体的代码示例,帮助读者更好地理解

如何使用Docker Compose进行多容器PHP应用的打包部署?如何使用Docker Compose进行多容器PHP应用的打包部署?Jul 31, 2023 am 11:57 AM

如何使用DockerCompose进行多容器PHP应用的打包部署?随着网络应用的发展,构建和部署复杂的多容器应用变得越来越常见。Docker是一种流行的容器化平台,可以帮助我们快速构建和部署应用程序。而DockerCompose是用于定义和运行多容器Docker应用程序的工具。本文将介绍如何使用DockerCompose来打包和部署一个简单的PHP应用

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools