Ds\Set::remove() 函數可以從集合中刪除所有給定的值。
用法
public void Ds\Set::remove([ mixed $...values ] )
Ds\Set::remove() 函數可以從集合中刪除所有給定的值並忽略任何不在集合中的值。
Ds\Set::remove() 函數不返回任何值。
例子1
<?php
$set = new \Ds\Set([1, 2, 3, 4, 5]);
echo "The actual set is:\n";
print_r($set);
$set->remove(2, 3);
echo "\n The set after removing values:\n";
print_r($set);
?>
例子2
<?php
$set = new \Ds\Set(["Tutorials", "Point" "India"]);
echo "The actual set is:\n";
print_r($set);
$set->remove(1);
echo "\n The set after removing values:\n";
print_r($set);
?>
相關用法
- PHP Ds Set reduce()用法及代碼示例
- PHP Ds Set reversed()用法及代碼示例
- PHP Ds Set reverse()用法及代碼示例
- PHP Ds Set count()用法及代碼示例
- PHP Ds Set intersect()用法及代碼示例
- PHP Ds Set toArray()用法及代碼示例
- PHP Ds Set slice()用法及代碼示例
- PHP Ds Set sort()用法及代碼示例
- PHP Ds Set merge()用法及代碼示例
- PHP Ds Set contains()用法及代碼示例
- PHP Ds Set filter()用法及代碼示例
- PHP Ds Set add()用法及代碼示例
- PHP Ds Set join()用法及代碼示例
- PHP Ds Set get()用法及代碼示例
- PHP Ds Set capacity()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP - Ds Set remove() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。