Contao\Input::stripSlashes PHP Метод

stripSlashes() публичный статический Метод

Strip slashes
Устаревший: Deprecated since Contao 3.5, to be removed in Contao 5. Since get_magic_quotes_gpc() always returns false in PHP 5.4+, the method was never actually executed.
public static stripSlashes ( mixed $varValue ) : mixed
$varValue mixed A string or array
Результат mixed The string or array without slashes
    public static function stripSlashes($varValue)
    {
        return $varValue;
    }