La función Ds\Set::add() es una función incorporada en PHP que se usa para agregar valores al conjunto.
Sintaxis:
void public Ds\Set::add( $values )
Parámetros: esta función acepta un solo parámetro $valores que contiene muchos valores para agregar en el conjunto.
Valor devuelto : esta función no devuelve ningún valor.
Los siguientes programas ilustran la función Ds\Set::add() en PHP:
Programa 1:
<?php // Declare an empty set $set = new \Ds\Set(); // Use add() function to // add elements to the set $set->add(1); $set->add("Geeks"); $set->add("G"); $set->add(10); var_dump($set); ?>
Producción:
object(Ds\Set)#1 (4) { [0]=> int(1) [1]=> string(5) "Geeks" [2]=> string(1) "G" [3]=> int(10) }
Programa 2:
<?php // Declare an empty set $set = new \Ds\Set(); // Use add() function to // add elements to the set $set->add(10, 20, 30, "Geeks", "for"); print_r($set); ?>
Producción:
Ds\Set Object ( [0] => 10 [1] => 20 [2] => 30 [3] => Geeks [4] => for )
Referencia: http://php.net/manual/en/ds-set.add.php