摘要: queue,$value); } /** * 尾部出队 * @return [type] [description] */ public function removeLast(){ return array_pop($this->queue); } ... 阅读全文
posted @ 2018-07-03 23:35 王芬老师 阅读(102) 评论(0) 推荐(0) 编辑
摘要: getName(),$objB->getName()); 阅读全文
posted @ 2018-07-03 23:27 王芬老师 阅读(109) 评论(0) 推荐(0) 编辑
摘要: <?php class DB{ //私有属性,用来保存单例; private static $instance; //私有构造函数,阻止在类的外部实例化 private function __construct(){ } //私有克隆函数,阻止在类的外部克隆对象; private funct... 阅读全文
posted @ 2018-07-03 22:42 王芬老师 阅读(115) 评论(0) 推荐(0) 编辑