arr.php 672 B

123456789101112131415161718192021222324252627282930313233343536
  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))
  17. {
  18. return $array;
  19. }
  20. foreach (explode('.', $key) as $segment)
  21. {
  22. if ( ! array_key_exists($segment, $array))
  23. {
  24. return is_callable($default) ? call_user_func($default) : $default;
  25. }
  26. $array = $array[$segment];
  27. }
  28. return $array;
  29. }
  30. }