MastodonHelp/web/lib/ckkeys.php

13 lines
173 B
PHP
Raw Normal View History

2023-12-26 11:16:24 +01:00
<?php
function ckkeys($keysarr,$arr) {
$missing=array();
foreach ($keysarr as $key) {
if (!array_key_exists($key,$arr))
$missing[]=$key;
}
return($missing);
}
?>