PhpSandbox\SandboxedString::offsetGet PHP Method

offsetGet() public method

Get string value at specified offset
public offsetGet ( mixed $offset ) : string
$offset mixed Offset to get value
return string Value to return
    public function offsetGet($offset)
    {
        return $this->value[$offset];
    }