arr.php 727 B

12345678910111213141516171819202122232425262728293031323334
  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. * @param array $array
  11. * @param string $key
  12. * @param mixed $default
  13. * @return mixed
  14. */
  15. public static function get($array, $key, $default = null)
  16. {
  17. if (is_null($key)) return $array;
  18. foreach (explode('.', $key) as $segment)
  19. {
  20. if ( ! array_key_exists($segment, $array))
  21. {
  22. return is_callable($default) ? call_user_func($default) : $default;
  23. }
  24. $array = $array[$segment];
  25. }
  26. return $array;
  27. }
  28. }