Get::let()
Remove
$_GET
value.
Get::let(void);
Get::let(string $key);
Get::let(array $keys);
Example:
// Remove all items
Get::let();
// Remove `foo` item
Get::let('foo');
// Remove `foo` and `bar` item
Get::let(['foo', 'bar']);
Get::let()
Remove
$_GET
value.
Get::let(void);
Get::let(string $key);
Get::let(array $keys);
Example:
// Remove all items
Get::let();
// Remove `foo` item
Get::let('foo');
// Remove `foo` and `bar` item
Get::let(['foo', 'bar']);