1 2 3 4 5 6
<?php function smarty_function_key_exists($params){ if(in_array($params['key'],$params['data']))return true; else return false; } ?>