arr.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. /**
  29. * Set an item in an array.
  30. *
  31. * This method is primarly helpful for setting the value in an array with
  32. * a variable depth, such as configuration arrays.
  33. *
  34. * Like the Arr::get method, JavaScript "dot" syntax is supported.
  35. *
  36. * @param array $array
  37. * @param string $key
  38. * @param mixed $value
  39. * @return void
  40. */
  41. public static function set(&$array, $key, $value)
  42. {
  43. $keys = explode('.', $key);
  44. while (count($keys) > 1)
  45. {
  46. $key = array_shift($keys);
  47. if ( ! isset($array[$key]))
  48. {
  49. $array[$key] = array();
  50. }
  51. $array =& $array[$key];
  52. }
  53. $array[array_shift($keys)] = $value;
  54. }
  55. }