Skip to content

Instantly share code, notes, and snippets.

@banqhsia
Last active May 5, 2020 09:31
Show Gist options
  • Save banqhsia/99554bf594686cdf9c220318df8eb585 to your computer and use it in GitHub Desktop.
Save banqhsia/99554bf594686cdf9c220318df8eb585 to your computer and use it in GitHub Desktop.
Macros the absents method to illuminate Arr class.
<?php
/**
* Check if an item or items NOT exist.
*
* @param \ArrayAccess|array $array
* @param string|array $keys
* @return bool
*/
Arr::macro('absents', function ($array, $keys) {
return ! static::has($array, $keys);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment