Xpressengine\Http\Request::originExcept PHP Method

originExcept() public method

Get all of the origin input except for a specified array of items.
public originExcept ( array | mixed $keys ) : array
$keys array | mixed item keys
return array
    public function originExcept($keys)
    {
        $keys = is_array($keys) ? $keys : func_get_args();
        $results = $this->originAll();
        Arr::forget($results, $keys);
        return $results;
    }