一.Ioc容器 某天,小J心血来潮,决定建造一艘星舰,这艘星舰要搭载"与众不同最时尚,开火肯定棒"的电磁炮.于是他写了一个星舰类: class ElectromagneticGun { public function fire() { echo 'da da da!'; } } class StarShip { protected $gun; public function __construct() { $gun = new ElectromagneticGun(); } } $po…
/** * 通过生产拥有超能力的超人实例 来理解IOC容器 */ //超能力模组接口 interface SuperModuleInterface{ public function activate(array $target); } //超能力模组 class XPower implements SuperModuleInterface{ public function activate(array $target){ //...... } } class UltraBomb implemen…