PhpSandbox\PHPSandbox::_is_string PHP Méthode

_is_string() public méthode

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