Say there are form inputs posted with array-style names:
<input type="text" name="user[name]" value="John" />
<input type="text" name="user[email]" value="foo@example.org" />
<input type="checkbox" name="user[prefs][]" value="1" checked="checked" />
<input type="checkbox" name="user[prefs][]" value="2" checked="checked" />
<input type="text" name="other[example][var]" value="foo" />
Then $_POST would come back like this, print_r()'d:
Array
(
[user] => Array
(
[name] => John
[email] => foo@example.org
[prefs] => Array
(
[0] => 1
[1] => 2
)
)
[other] => Array
(
[example] => Array
(
[var] => foo
)
)
)
The goal is to be able call a function, like this:
$form_values = form_values($_POST);
That would return an associative array with keys similar to the style of the original input names:
Array
(
[user[name]] => John
[user[email]] => foo@example.org
[user[prefs][]] => Array
(
[0] => 1
[1] => 2
)
[other[example][var]] => foo
)
This has been very challenging, and at this point my "wheels are spinning in the mud." :-[

$user = $_POST['user'];, you could access the username by doing$user['name'], I'm not sure why you want to embed the array brackets into the key as you would be taking apart the data structure that already holds the data in a more accessible and meaningful manner. – MatthewMcGovern Oct 19 '12 at 14:37<?php echo $form->input(array('type' => 'text', 'name' => 'user[email]')) ?>. I think that being able to extract the keys in this way would make it trivial to check for a default value for the textbox. Make sense?'user[email]'would be a key in the$form_valuesexample and hold the submitted value. – groovenectar Oct 19 '12 at 14:44$form->input(array('type' => 'text', 'name' => array('user', 'name'));This way you can then access$_POST[$array[0][$array[1]]]– MatthewMcGovern Oct 19 '12 at 14:48$form->input()method accepting the arguments as they would appear in the HTML output... – groovenectar Oct 19 '12 at 15:38