PHP | Función Ds\\Set clear()

La función Ds\Set::clear() es una función incorporada en PHP que se utiliza para eliminar todos los valores del conjunto.

Sintaxis:

void public Ds\Set::clear( void )

Parámetros: Esta función no acepta ningún parámetro.

Valor devuelto : Esta función no devuelve ningún valor.

Los siguientes programas ilustran la función Ds\Set::clear() en PHP:

Programa 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); 
  
?> 
Producción:

Ds\Set Object
(
    [0] => 1
    [1] => 2
    [2] => 3
    [3] => 4
    [4] => 5
    [5] => 6
)
Ds\Set Object
(
)

Programa 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); 
    
?> 
Producción:

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) {
}

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

Publicación traducida automáticamente

Artículo escrito por jit_t y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *