PHP - Funzione Ds Imposta diff ()
La funzione Ds \ Set :: diff () può creare un nuovo set utilizzando i valori che non sono in un altro set.
Sintassi
public Ds\Set Ds\Set::diff( Ds\Set $set )
La funzione Ds \ Set :: diff () può restituire un nuovo set contenente tutti i valori che non sono in un altro set.
Esempio
<?php
$set1 = new \Ds\Set([1, 3, 5]);
$set2 = new \Ds\Set([1, 3, 6, 9]);
echo("The difference of set1 and set2: \n");
print_r($set1->diff($set2));
?>