PhpSandbox\SandboxedString::offsetExists PHP Method

offsetExists() public method

Check if specified offset exists in string value
public offsetExists ( mixed $offset ) : boolean
$offset mixed Offset to check
return boolean Return true if offset exists, false otherwise
    public function offsetExists($offset)
    {
        return isset($this->value[$offset]);
    }