PHP 8.3.4 Released!

Ds\Set::remove

(PECL ds >= 1.0.0)

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

说明

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

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

参数

values

The values to remove.

返回值

没有返回值。

示例

示例 #1 Ds\Set::remove() example

<?php
$set
= new \Ds\Set([1, 2, 3, 4, 5]);

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

var_dump($set);
?>

以上示例的输出类似于:

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

User Contributed Notes

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