element_child

Versions
mediamosa-21
element_child($key)

Check if the key is a child.

Code

includes/common.inc, line 5287

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