function.key_exists.php 136 Bytes Edit Raw Blame History 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; } ?>