element_properties

Definition

element_properties($element)
drupal/includes/common.inc, line 3322

Description

Get properties of a structured array element. Properties begin with '#'.

Related topics

Namesort iconDescription
Input validationFunctions to validate user input.

Code

function element_properties($element) {
  return array_filter(array_keys((array) $element), 'element_property');
}