Вход Регистрация
Файл: upload-2031-rs1/system/engine/registry.php
Строк: 11
<?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]);
    }
}
Онлайн: 0
Реклама