(PHP 5, PHP 7)
Performs a bitwise equivalence on two variants
mixed variant_eqv ( mixed $left, mixed $right )
Performs a bitwise equivalence on two variants.
Parameters:
left
The left operand.
right
The right operand.
Returns:
If each bit in left
is equal to the corresponding bit in right
then TRUE
is returned, otherwise FALSE
is returned.
Please login to continue.