con=new mysqli('localhost','root','123456','test');
			echo '建立一次数据库连接';	
		}

		public static function getInstance(){
			if(! self::$db instanceof self){
				self::$db=new self();
			}
			return self::$db;
		}

		private function __clone(){}
	}

	//客户端
	$db=DB::getInstance();
	$db2=DB::getInstance();
	// $db3=clone $db;
	echo $db===$db2 ? 'OK':'NO';

?>