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


PHP Ds\Set clear()用法及代碼示例


Ds \ Set::clear()函數是PHP中的內置函數,用於刪除集合中的所有值。

用法:

void public Ds\Set::clear( void )

參數:該函數不接受任何參數。


返回值:該函數不返回任何值。

以下示例程序旨在說明PHP中的Ds \ Set::clear()函數:

程序1:

<?php  
  
// Declare new Set 
$set = new \Ds\Set([1, 2, 3, 4, 5, 6]);  
  
// Display the Set element  
print_r($set);  
  
// Use clear() function to remove elements  
$set->clear();  
  
// Display the Set element  
print_r($set);  
  
?> 
輸出:
Ds\Set Object
(
    [0] => 1
    [1] => 2
    [2] => 3
    [3] => 4
    [4] => 5
    [5] => 6
)
Ds\Set Object
(
)

程序2:

<?php  
  
// Declare new Set 
$set = new \Ds\Set([10, 15, 21, 13, 16, 18]);  
  
// Display the Set element  
var_dump($set);  
    
// Use clear() function to remove elements  
$set->clear();  
    
// Display the Set element  
var_dump($set);  
    
?> 
輸出:
object(Ds\Set)#1 (6) {
  [0]=>
  int(10)
  [1]=>
  int(15)
  [2]=>
  int(21)
  [3]=>
  int(13)
  [4]=>
  int(16)
  [5]=>
  int(18)
}
object(Ds\Set)#1 (0) {
}

參考: http://php.net/manual/en/ds-set.clear.php



相關用法


注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | Ds\Set clear() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。