Skip to content

Instantly share code, notes, and snippets.

@avalanche123
Created April 29, 2011 16:03
Show Gist options
  • Save avalanche123/948529 to your computer and use it in GitHub Desktop.
Save avalanche123/948529 to your computer and use it in GitHub Desktop.
self-referencing function for printing errors from the form
<?php
$errors = function($field) use (&$errors) {
$result = array(
'errors' => $field->getErrors(),
'children' => array()
);
foreach ($field as $name => $child) {
$result['children'][$name] = $errors($child);
}
return $result;
};
<?php
var_dump(array($form->getName() => $errors($form)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment