Files
crm.twinpol.com/include/Smarty/plugins/modifier.getrealindex.php
2025-05-12 15:44:39 +00:00

14 lines
229 B
PHP

<?php
function smarty_modifier_getrealindex($array, $key) {
if($key == null || empty($key)) {
return false;
}
$a_keys = array_keys($array);
$index_of_apple = array_search($key, $a_keys);
return $index_of_apple;
}
?>