summaryrefslogtreecommitdiffstats
path: root/plugins/modifier.key_not_exists.php
blob: f6906cd7703757afa4e7c2dadf7cb139de51d4a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

function smarty_modifier_key_not_exists($value, $key)
{
    return array_filter($value,
        function($v) use ($key) {
            return !array_key_exists($key, $v);
        });
}

?>