arr.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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 ( ! is_array($array) or ! 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 array item to a given value.
  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. if (is_null($key)) return $array = $value;
  44. $keys = explode('.', $key);
  45. while (count($keys) > 1)
  46. {
  47. $key = array_shift($keys);
  48. if ( ! isset($array[$key]) or ! is_array($array[$key]))
  49. {
  50. $array[$key] = array();
  51. }
  52. $array =& $array[$key];
  53. }
  54. $array[array_shift($keys)] = $value;
  55. }
  56. }