PhpSandbox\SandboxedString::offsetGet PHP Метод

offsetGet() публичный Метод

Get string value at specified offset
public offsetGet ( mixed $offset ) : string
$offset mixed Offset to get value
Результат string Value to return
    public function offsetGet($offset)
    {
        return $this->value[$offset];
    }