element_properties($element)
drupal-5/includes/common.inc, line 2219
Get properties of a structured array element. Properties begin with '#'.
| Name | Description |
|---|---|
| Input validation | Functions to validate user input. |
<?php
function element_properties($element) {
return array_filter(array_keys((array) $element), 'element_property');
}
?>