You appear to be a bot. Output may be restricted
Description
Offset to retrieve
Usage
$mixed = Recursive_ArrayAccess::offsetGet( $offset );
Parameters
- $offset
- ( mixed ) required – The offset to retrieve.
Returns
mixed Can return all value types.
Source
File name: easy-digital-downloads/includes/libraries/class-recursive-arrayaccess.php
Lines:
1 to 3 of 3
public function offsetGet( $offset ) { return isset( $this->container[ $offset ] ) ? $this->container[ $offset ] : null; }