-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from nullpunkt/hasKeys
new method: __::hasKeys
- Loading branch information
Showing
4 changed files
with
71 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
namespace collections; | ||
|
||
/** | ||
* Returns if $input contains all requested $keys. If $strict is true it also checks if $input exclusively contains the given $keys. | ||
* | ||
** __::hasKeys(['foo' => 'bar', 'foz' => 'baz'], ['foo', 'foz']); | ||
** // → true | ||
* | ||
* @param array $collection of key values pairs | ||
* @param array $keys collection of keys to look for | ||
* @param boolean $strict to exclusively check | ||
* | ||
* @return boolean | ||
* | ||
*/ | ||
function hasKeys(array $collection = [], array $keys = [], $strict = false) | ||
{ | ||
$keysExist = (count(array_intersect($keys, array_keys($collection)))==count($keys)); | ||
|
||
return (!$strict && $keysExist) || ($strict && $keysExist && count($keys) === count($collection)); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters