elFinderConnector::input_filter PHP Method

input_filter() protected method

Remove null & stripslashes applies on "magic_quotes_gpc"
Author: Naoki Sawada
protected input_filter ( mixed $args ) : mixed
$args mixed
return mixed
    protected function input_filter($args)
    {
        static $magic_quotes_gpc = NULL;
        if ($magic_quotes_gpc === NULL) {
            $magic_quotes_gpc = version_compare(PHP_VERSION, '5.4', '<') && get_magic_quotes_gpc();
        }
        if (is_array($args)) {
            return array_map(array(&$this, 'input_filter'), $args);
        }
        $res = str_replace("", '', $args);
        $magic_quotes_gpc && ($res = stripslashes($res));
        return $res;
    }