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

11 lines
197 B
PHP

<?php
function smarty_function_getrealindex($params, &$smarty)
{
$a_keys = array_keys($params['array']);
$index_of_apple = array_search($params['key'], $a_keys);
return $index_of_apple;
}
?>