Decorator模式能够像标准的继承一样为类添加新的功能. 不同于标准继承机制的是,如果对象进行了实例化,Decorator模式能够在运行时动态地为对象添加新的功能. <?php abstract class AbstractCar{ public abstract function getPrice(); public abstract function getManufacturer(); } class Car extends AbstractCar{ private $price=20…