arr.php 511 B

123456789101112131415161718192021222324252627282930
  1. <?php namespace System;
  2. class Arr {
  3. /**
  4. * Get an item from an array.
  5. *
  6. * If the specified key is null, the entire array will be returned.
  7. *
  8. * @param array $array
  9. * @param string $key
  10. * @param mixed $default
  11. * @return mixed
  12. */
  13. public static function get($array, $key, $default = null)
  14. {
  15. if (is_null($key))
  16. {
  17. return $array;
  18. }
  19. if (array_key_exists($key, $array))
  20. {
  21. return $array[$key];
  22. }
  23. return is_callable($default) ? call_user_func($default) : $default;
  24. }
  25. }