Blame view

libs/SMARTY/plugins/function.key_exists.php 136 Bytes
42868d70   andryeyev   Создал GIT
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;
  }
  ?>