La función Ds\Set::xor() es una función incorporada en PHP que se usa para crear un nuevo conjunto que contiene el valor en el primer conjunto o en el segundo conjunto, pero no en ambos.
Sintaxis:
Ds\Set public Ds\Set::xor ( Ds\Set $set )
Parámetros: esta función acepta un único parámetro $set que se utiliza para contener el conjunto de valores.
Valor devuelto: se utiliza para devolver un conjunto que contiene el xor del conjunto actual con otro conjunto.
Los siguientes programas ilustran la función Ds\Set::xor() en PHP:
Programa 1:
<?php // Declare a new set $a = new \Ds\Set([1, 3, 5]); // Declare a new set $b = new \Ds\Set([2, 3, 6]); // Print the xor of both set echo("xor of both set is: \n"); print_r($a->xor($b)); ?>
Producción:
xor of both set is: Ds\Set Object ( [0] => 1 [1] => 5 [2] => 2 [3] => 6 )
Programa 2:
<?php // Declare a new set $a = new \Ds\Set([2, 3, 6, 7, 8]); // Declare a new set $b = new \Ds\Set([2, 3, 5, 8, 9, 10]); // Print the xor of both set echo("xor of both set is: \n"); var_dump($a->xor($b)); ?>
Producción:
xor of both set is: object(Ds\Set)#3 (5) { [0]=> int(6) [1]=> int(7) [2]=> int(5) [3]=> int(9) [4]=> int(10) }
Referencia: https://www.php.net/manual/en/ds-set.xor.php