phprs\util\Cache::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( )
    public function __construct()
    {
        if (!function_exists('apc_fetch') || !function_exists('apc_store') || !function_exists('apc_delete')) {
            parent::__construct(new FileCache(), $this->tag);
        } else {
            parent::__construct(new ApcCache(), $this->tag);
        }
    }