Пример #1
0
 /**
  * Store everything except the selected keys from the provided input array
  * 
  * @param array $keys
  * @param array $values
  * @return \Dsc\Flash
  */
 public function except(array $keys, array $values)
 {
     $result = $values;
     foreach ($keys as $key) {
         \Dsc\ArrayHelper::forget($result, $key);
     }
     $this->store($result);
     return $this;
 }