ZenphotoCMS 1.6.2

CacheItem
in package

Simple cache item (key, value, ttl) that is being used by all the detection methods of Mobile Detect class.

Table of Contents

Properties

$key  : string
$ttl  : int|null
$value  : bool|null

Methods

__construct()  : mixed
get()  : string|bool
getKey()  : string
getTtl()  : int|null
set()  : void

Properties

$key

protected string $key

Unique key for the cache record.

$value

protected bool|null $value = null

Mobile Detect only needs to store booleans (e.g. "isMobile" => true)

Methods

__construct()

public __construct(mixed $key[, mixed $value = null ][, mixed $ttl = null ]) : mixed
Parameters
$key : mixed
$value : mixed = null
$ttl : mixed = null

get()

public get() : string|bool
Return values
string|bool

getKey()

public getKey() : string
Return values
string

getTtl()

public getTtl() : int|null
Return values
int|null

set()

public set(mixed $value) : void
Parameters
$value : mixed

        
On this page

Search results