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