Review PHP设计模式之——单例模式
摘要:
单例模式: 1 class Single { 2 private static $_instance; 3 4 private function __construct(){ 5 //define method as private 6 } 7 8 public function __clone() 阅读全文
Your future depends on your dreams. So go to sleep.