element_children($element)
drupal-5/includes/common.inc, line 2234
Get keys of a structured array tree element that are not properties (i.e., do not begin with '#').
| Name | Description |
|---|---|
| Input validation | Functions to validate user input. |
<?php
function element_children($element) {
return array_filter(array_keys((array) $element), 'element_child');
}
?>