<?php

class Test() {
	private static $instance = null;
	
	static public function getInstance() {
	if(is_null(self::$instance)) {
	self::$instance = new self();
	}
	return self::$instance;
	}
}