element_child

  1. drupal
    1. 4.7 form.inc
    2. 5
    3. 6 common.inc
    4. 7 common.inc
Versions
4.7 – 7 element_child($key)

Check if the key is a child.

Related topics

Code

includes/common.inc, line 2369

<?php
function element_child($key) {
  return $key[0] != '#';
}
?>