芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/qrafiqxcreativeagency.com/accounts/office/vendor/azjezz/psl/src/Psl/Dict/equal.php
$first * @param array
$second */ function equal(array $first, array $second): bool { if ($first === $second) { return true; } if (Iter\count($first) !== Iter\count($second)) { return false; } foreach ($first as $k => $v) { if (!Iter\contains_key($second, $k) || $second[$k] !== $v) { return false; } } return true; }