keys() public static method

public static keys ( $obj = null )
Beispiel #1
0
 public function test_keys()
 {
     $hash = array('x' => 1, 'y' => 2);
     $this->assertEquals(array('x', 'y'), Helper::keys($hash));
 }