2016年8月10日

php适配器模式

摘要: <?php/** * Created by PhpStorm. * User: v.liumin * Date: 2016/8/10 * Time: 11:17 */interface Target { public function simpleMethod1(); public function 阅读全文

posted @ 2016-08-10 11:23 铁轨嘴上飘 阅读(204) 评论(0) 推荐(0) 编辑

PHP单例模式

摘要: 单例模式:<?php class singleton { private static $instance = null; public function __construct() { echo 'This is not a Constructed Class'; } private static function singlet... 阅读全文

posted @ 2016-08-10 11:17 铁轨嘴上飘 阅读(115) 评论(0) 推荐(0) 编辑

导航