PHP - Funzione Ds Map diff ()
La funzione Ds \ Map :: diff () può creare una nuova mappa usando i tasti che non sono in un'altra mappa.
Sintassi
public Ds\Map Ds\Map::diff( Ds\Map $map )
La funzione Ds \ Map :: diff () può restituire il risultato della rimozione di tutte le chiavi dall'istanza corrente che sono presenti in una data mappa.
Esempio 1
<?php
$map1 = new \Ds\Map(["1" => "10", "2" => 20, "3" => 30]);
$map2 = new \Ds\Map(["3" => "30", "4" => 40, "5" => 50]);
echo "The difference between two maps: <br>";
print_r($map1 -> diff($map2));
?>
Esempio 2
<?php
$map1 = new \Ds\Map(["1" => "Tutorials", "2" => "Point", "3" => "India"]);
$map2 = new \Ds\Map([ 2" => "Point", "3" => "Tutorials", "4" => "Tutorix"]);
echo "The difference between two maps: <br>";
print_r($map1 -> diff($map2));
?>