GancioF2F/lib/ckmkeys.php

11 lines
136 B
PHP
Raw Permalink Normal View History

2024-10-29 13:51:20 +01:00
<?php
function ckmkeys($keys,$arr) {
2024-10-30 18:35:47 +01:00
foreach ($keys as $key)
if (!array_key_exists($key,$arr))
return false;
return true;
2024-10-29 13:51:20 +01:00
}
?>