arr.php 661 B

123456789101112131415161718192021222324252627282930313233
  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. The array may
  7. * also be accessed using JavaScript "dot" style notation.
  8. *
  9. * @param array $array
  10. * @param string $key
  11. * @param mixed $default
  12. * @return mixed
  13. */
  14. public static function get($array, $key, $default = null)
  15. {
  16. if (is_null($key)) return $array;
  17. foreach (explode('.', $key) as $segment)
  18. {
  19. if ( ! array_key_exists($segment, $array))
  20. {
  21. return is_callable($default) ? call_user_func($default) : $default;
  22. }
  23. $array = $array[$segment];
  24. }
  25. return $array;
  26. }
  27. }