arr.php 952 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. Retrieving items nested
  8. * in multiple arrays is also supported.
  9. *
  10. * <code>
  11. * // Returns "taylor"
  12. * $item = Arr::get(array('name' => 'taylor'), 'name', $default);
  13. *
  14. * // Returns "taylor"
  15. * $item = Arr::get(array('name' => array('is' => 'taylor')), 'name.is');
  16. * </code>
  17. *
  18. * @param array $array
  19. * @param string $key
  20. * @param mixed $default
  21. * @return mixed
  22. */
  23. public static function get($array, $key, $default = null)
  24. {
  25. if (is_null($key)) return $array;
  26. foreach (explode('.', $key) as $segment)
  27. {
  28. if ( ! array_key_exists($segment, $array))
  29. {
  30. return is_callable($default) ? call_user_func($default) : $default;
  31. }
  32. $array = $array[$segment];
  33. }
  34. return $array;
  35. }
  36. }