Definition

element_properties($element)
drupal-5/includes/common.inc, line 2219

Description

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

Related topics

Namesort iconDescription
Input validationFunctions to validate user input.

Code

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