PhpSandbox\PHPSandbox::_is_string PHP Method

_is_string() public method

Return is_string value of SandboxedString or mixed value
public _is_string ( mixed $value ) : boolean
$value mixed Value to check if is_string
return boolean Returns the is_string value
    public function _is_string($value)
    {
        return $value instanceof SandboxedString ? true : is_string($value);
    }
PHPSandbox