SharePoint
- 1 ответ
- 0 вопросов
1
Вклад в тег
class Registry extends stdClass {
private static $instance;
private function __construct () {}
private function __clone () {}
public static function me ()
{
if (self::$instance === null)
self::$instance = new self;
return self::$instance;
}
}
# Использовать так
Registry::me()->config = new stdClass;
Registry::me()->config->host = 'habrahabr.ru';
Registry::me()->config->admin = 'admin@habrahabr.ru';
Registry::me()->config->name = 'Хабрахабр';