當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。