Browse Source

added arr::set method.

Taylor Otwell 13 years ago
parent
commit
a667e32ad3
1 changed files with 32 additions and 0 deletions
  1. 32 0
      system/arr.php

+ 32 - 0
system/arr.php

@@ -31,4 +31,36 @@ class Arr {
 		return $array;
 	}
 
+	/**
+	 * Set an item in an array.
+	 *
+	 * This method is primarly helpful for setting the value in an array with
+	 * a variable depth, such as configuration files.
+	 *
+	 * Like the Arr::get method, JavaScript "dot" syntax is supported.
+	 *
+	 * @param  array   $array
+	 * @param  string  $key
+	 * @param  mixed   $value
+	 * @return void
+	 */
+	public static function set(&$array, $key, $value)
+	{
+		$reference =& $array;
+
+		foreach (explode('.', $key) as $segment)
+		{
+			if ( ! isset($reference[$segment]))
+			{
+				$reference[$segment] = $value;
+				
+				return;		
+			}
+
+			$reference =& $reference[$segment];
+		}
+
+		$reference = $value;
+	}
+
 }