PhpSandbox\SandboxedString::offsetUnset PHP Method

offsetUnset() public method

Unset string value at specified offset
public offsetUnset ( mixed $offset )
$offset mixed Offset to unset
    public function offsetUnset($offset)
    {
        unset($this->value[$offset]);
    }