MastodonHelp/web/site/mustard/include/ckkeys.php
pezcurrel 5ec1354546 ...
2020-10-18 06:53:27 +02:00

12 lines
173 B
PHP

<?php
function ckkeys($keysarr,$arr) {
$missing=array();
foreach ($keysarr as $key) {
if (!array_key_exists($key,$arr))
$missing[]=$key;
}
return($missing);
}
?>