Your IP : 216.73.216.95


Current Path : /var/test/www/upload/system/engine/
Upload File :
Current File : /var/test/www/upload/system/engine/registry.php

<?php
final class Registry {
	private $data = array();

	public function get($key) {
		return (isset($this->data[$key]) ? $this->data[$key] : null);
	}

	public function set($key, $value) {
		$this->data[$key] = $value;
	}

	public function has($key) {
		return isset($this->data[$key]);
	}
}