示例#1
0
 function array_expand(array $set)
 {
     return Hash::expand($set);
 }
示例#2
0
 /**
  * Test that expand() will expand a single-dimension array into a multi-dimension.
  */
 public function testExpand()
 {
     $this->assertEquals($this->expanded, Hash::expand($this->collapsed));
 }