element_child
- Versions
- 4.7 – 7
element_child($key)
Check if the key is a child.
Related topics
Code
includes/common.inc, line 2357
<?php
function element_child($key) {
return $key[0] != '#';
}
?>Login or register to post comments element_child($key)Check if the key is a child.
includes/common.inc, line 2357
<?php
function element_child($key) {
return $key[0] != '#';
}
?>Login or register to post comments