I have 2-dimensional GET parameters like request?a[b]=2
I would like to use the php input filter API (http://www.php.net/filter) but cannot find a reasonable way to work on the input a[b].
filter_has_var(INPUT_GET, 'a'); // true
but
filter_has_var(INPUT_GET, 'a[b]'); // false
is there a way to instruct this API to work with 2-dim input parameters ?
Thank you for your help
Jerome