PHP | Ds\Map xor()函数
Ds\Map::xor()函数是PHP中的一个内置函数,用于创建一个新映射,该映射包含第一个映射或第二个映射中的值,但不能同时包含两者。
句法:
Ds\Map public Ds\Map::xor ( Ds\Map $map )
参数:此参数保存另一个值映射。
返回值:用于返回包含当前映射与另一个映射的异或的映射。
下面的程序说明了PHP中的Ds\Map::xor()函数:
方案一:
1, "b" => 3, "c" => 5]);
// Declare another new map
$b = new \Ds\Map(["a" => 2, "c" => 3, "d" => 6]);
// Print the xor of two map
echo("xor of both map is: \n");
print_r($a->xor($b));
?>
输出:
xor of both map is:
Ds\Map Object
(
[0] => Ds\Pair Object
(
[key] => b
[value] => 3
)
[1] => Ds\Pair Object
(
[key] => d
[value] => 6
)
)
方案二:
"Geeks", "b" => "for",
"c" => "Geeks"]);
// Declare another new map
$b = new \Ds\Map(["b" => "Computer", "e" => "Science",
"f" => "Portal"]);
// Print the xor of two map
echo("xor of both map is: \n");
print_r($a->xor($b));
?>
输出:
xor of both map is:
Ds\Map Object
(
[0] => Ds\Pair Object
(
[key] => a
[value] => Geeks
)
[1] => Ds\Pair Object
(
[key] => c
[value] => Geeks
)
[2] => Ds\Pair Object
(
[key] => e
[value] => Science
)
[3] => Ds\Pair Object
(
[key] => f
[value] => Portal
)
)
参考: https://www. PHP.net/manual/en/ds-map.xor。 PHP