element_children
includes/common.inc, line 2352
- Versions
- 4.7 – 6
element_children($element)- 7
element_children(&$elements, $sort = FALSE)
Get keys of a structured array tree element that are not properties (i.e., do not begin with '#').
Related topics
Code
<?php
function element_children($element) {
return array_filter(array_keys((array) $element), 'element_child');
}
?> 