arr.php 976 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. /**
  26. * Get an item from an array using JavaScript style "dot" notation.
  27. *
  28. * @param array $array
  29. * @param string $key
  30. * @param mixed $default
  31. * @return mixed
  32. */
  33. public static function dot($array, $key, $default = null)
  34. {
  35. foreach (explode('.', $key) as $segment)
  36. {
  37. if ( ! isset($array[$segment]))
  38. {
  39. return is_callable($default) ? call_user_func($default) : $default;
  40. }
  41. $array = $array[$segment];
  42. }
  43. return $array;
  44. }
  45. }