php设计模式 flyweight (享元模式) 作者: shuiguang 时间: 2015-11-15 分类: php开发 没有评论 25种php设计模式,你全都知道吗?下面用代码介绍享元模式(flyweight模式)<?php /** * 享元模式 * * 运用享元技术有效的支持大量细粒度的对象 */ class CD { private $_title = null; private $_artist = null;  ... 阅读全文