Ds\Set::remove

(PECL ds >= 1.0.0)

Ds\Set::removeRemoves all given values from the set.

설명

public void Ds\Set::remove ([ mixed $...values ] )

Removes all given values from the set, ignoring any that are not in the set.

인수

values

The values to remove.

반환값

값을 반환하지 않습니다.

예제

Example #1 Ds\Set::remove() example

<?php
$set 
= new \Ds\Set([12345]);

$set->remove(1);            // Remove 1
$set->remove(12);         // Can't find 1, but remove 2
$set->remove(...[34]);    // Remove 3 and 4

var_dump($set);
?>

위 예제의 출력 예시:

object(Ds\Set)#1 (1) {
  [0]=>
  int(5)
}
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top