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