Nathanmac\Utilities\Parser\Parser::except PHP Method

except() public method

Get all of the input except for a specified array of items.
public except ( string | array $keys ) : array
$keys string | array
return array
    public function except($keys)
    {
        $keys = is_array($keys) ? $keys : func_get_args();
        $results = $this->payload();
        foreach ($keys as $key) {
            $this->removeValue($results, $key);
        }
        return $results;
    }