Пример #1
0
 public function testRemoveValues()
 {
     $array = array('these' => 'are', 'my' => 'values');
     ArrayHelper::removeValues($array, array('these', 'my'));
     $this->assertArrayNotHasKey('these', $array);
     $this->assertArrayNotHasKey('my', $array);
 }