PHP - Funzione Ds Set intersect ()
La funzione Ds \ Set :: intersect () può creare un nuovo insieme intersecando i valori con un altro insieme.
Sintassi
public Ds\Set Ds\Set::intersect( Ds\Set $set )
La funzione Ds \ Set :: intersect () può creare un nuovo set utilizzando i valori comuni sia all'istanza corrente che a un altro set. Significa restituire una copia dell'istanza corrente con tutti i valori rimossi che non sono nell'altro set.
La funzione Ds \ Set :: intersect () può restituire l'intersezione dell'istanza corrente e di un altro insieme.
Esempio 1
<?php
$set1 = new \Ds\Set([1, 4, 7]);
$set2 = new \Ds\Set([1, 5, 6, 7]);
echo("The intersection of both set: \n");
print_r($set1->intersect($set2));
?>
Esempio 2
<?php
$set1 = new \Ds\Set([1, 4, 5, 7, 9]);
$set2 = new \Ds\Set([2, 4, 6, 8, 10]);
echo("The intersection of both set: \n");
var_dump($set1->intersect($set2));
?>