Home  >  Article  >  Backend Development  >  Code analysis for adaptation such as PHP adapter mode

Code analysis for adaptation such as PHP adapter mode

黄舟
黄舟Original
2017-03-15 09:51:191622browse

PHPAdapter pattern Code analysis for adaptation

<?php
// 适配器模式-类适配

/**
 * 需要被适配的类
 * 需求:给 Source 新增一个新的方法但又不修改 Source 的源代码
 */
class Source
{
	public function action() {
		echo &#39;call action&#39;, &#39;<br/>&#39;;
	}
}

interface Targetable
{
	/**
	 * Source 类中同名的方法
	 */
	function action();
	
	/**
	 * 需要给 Source 类新增的方法
	 */
	function action2();
}

/**
 * 适配器类
 */
class Adapter extends Source implements Targetable
{
	public function action2() {
		echo &#39;call <b>action2</b>&#39;, &#39;<br/>&#39;;
	}
}

// test code
$ad = new Adapter();
$ad->action();
$ad->action2();

The above is the detailed content of Code analysis for adaptation such as PHP adapter mode. For more information, please follow other related articles on the PHP Chinese website!

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