element_child
Definition
element_child($key)
includes/common.inc, line 2226
Description
Check if the key is a child.
Related topics
| Name | Description |
|---|---|
| Input validation | Functions to validate user input. |
Code
<?php
function element_child($key) {
return $key[0] != '#';
}
?> 