config.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <?php namespace Laravel; use Closure;
  2. class Config {
  3. /**
  4. * The paths to the configuration files.
  5. *
  6. * @var array
  7. */
  8. public static $paths = array(SYS_CONFIG_PATH, CONFIG_PATH);
  9. /**
  10. * All of the loaded configuration items.
  11. *
  12. * The configuration arrays are keyed by their owning file name.
  13. *
  14. * @var array
  15. */
  16. protected static $items = array();
  17. /**
  18. * Determine if a configuration item or file exists.
  19. *
  20. * <code>
  21. * // Determine if the "session" configuration file exists
  22. * $exists = Config::has('session');
  23. *
  24. * // Determine if the "timezone" option exists in the "application" configuration array
  25. * $exists = Config::has('application.timezone');
  26. * </code>
  27. *
  28. * @param string $key
  29. * @return bool
  30. */
  31. public static function has($key)
  32. {
  33. return ! is_null(static::get($key));
  34. }
  35. /**
  36. * Get a configuration item.
  37. *
  38. * If no item is requested, the entire configuration array will be returned.
  39. *
  40. * <code>
  41. * // Get the "session" configuration array
  42. * $session = Config::get('session');
  43. *
  44. * // Get the "timezone" option from the "application" configuration file
  45. * $timezone = Config::get('application.timezone');
  46. * </code>
  47. *
  48. * @param string $key
  49. * @param string $default
  50. * @return array
  51. */
  52. public static function get($key, $default = null)
  53. {
  54. list($file, $key) = static::parse($key);
  55. if ( ! static::load($file))
  56. {
  57. return ($default instanceof Closure) ? call_user_func($default) : $default;
  58. }
  59. if (is_null($key)) return static::$items[$file];
  60. return Arr::get(static::$items[$file], $key, $default);
  61. }
  62. /**
  63. * Set a configuration item's value.
  64. *
  65. * <code>
  66. * // Set the "session" configuration array
  67. * Config::set('session', $array);
  68. *
  69. * // Set the "timezone" option in the "application" configuration file
  70. * Config::set('application.timezone', 'UTC');
  71. * </code>
  72. *
  73. * @param string $key
  74. * @param mixed $value
  75. * @return void
  76. */
  77. public static function set($key, $value)
  78. {
  79. list($file, $key) = static::parse($key);
  80. static::load($file);
  81. (is_null($key)) ? Arr::set(static::$items, $file, $value) : Arr::set(static::$items[$file], $key, $value);
  82. }
  83. /**
  84. * Parse a configuration key and return its file and key segments.
  85. *
  86. * @param string $key
  87. * @return array
  88. */
  89. protected static function parse($key)
  90. {
  91. $segments = explode('.', $key);
  92. // If there is only one segment after exploding on dots, we will return NULL
  93. // as the key value, causing the entire configuration array to be returned.
  94. $key = (count($segments) > 1) ? implode('.', array_slice($segments, 1)) : null;
  95. return array($segments[0], $key);
  96. }
  97. /**
  98. * Load all of the configuration items from a configuration file.
  99. *
  100. * @param string $file
  101. * @return bool
  102. */
  103. protected static function load($file)
  104. {
  105. if (isset(static::$items[$file])) return true;
  106. $config = array();
  107. // Configuration files cascade. Typically, the system configuration array is loaded
  108. // first, followed by the application array, providing the convenient cascading
  109. // of configuration options from system to application.
  110. foreach (static::$paths as $directory)
  111. {
  112. if (file_exists($path = $directory.$file.EXT))
  113. {
  114. $config = array_merge($config, require $path);
  115. }
  116. }
  117. // If configuration options were actually found, they will be loaded into the
  118. // array containing all of the options for all files. The array is keyed by the
  119. // configuration file name.
  120. if (count($config) > 0) static::$items[$file] = $config;
  121. return isset(static::$items[$file]);
  122. }
  123. }