/** * 通过生产拥有超能力的超人实例 来理解IOC容器 */ //超能力模组接口 interface SuperModuleInterface{ public function activate(array $target); } //超能力模组 class XPower implements SuperModuleInterface{ public function activate(array $target){ //...... } } class UltraBomb implemen…