当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Ds Set remove()用法及代码示例



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 remove() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。