HTMLPurifier_StringHash
extends ArrayObject
in package
This is in almost every respect equivalent to an array except that it keeps track of which keys were accessed.
Tags
Table of Contents
Properties
- $accessed : mixed
Methods
- getAccessed() : array<string|int, mixed>
- Returns a lookup array of all array indexes that have been accessed.
- offsetGet() : mixed
- Retrieves a value, and logs the access.
- resetAccessed() : mixed
- Resets the access array.
Properties
$accessed
protected
mixed
$accessed
= array()
Tags
Methods
getAccessed()
Returns a lookup array of all array indexes that have been accessed.
public
getAccessed() : array<string|int, mixed>
Return values
array<string|int, mixed> —in form array($index => true).
offsetGet()
Retrieves a value, and logs the access.
public
offsetGet(mixed $index) : mixed
Parameters
- $index : mixed
Attributes
resetAccessed()
Resets the access array.
public
resetAccessed() : mixed