arr.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. if (is_null($key))
  36. {
  37. return $array;
  38. }
  39. foreach (explode('.', $key) as $segment)
  40. {
  41. if ( ! isset($array[$segment]))
  42. {
  43. return is_callable($default) ? call_user_func($default) : $default;
  44. }
  45. $array = $array[$segment];
  46. }
  47. return $array;
  48. }
  49. }