Home > Article > Backend Development > PHP XOR
XOR operator in Php stands for exclusive OR. It is a logical operator which is used to combine the logical statements. In Php, XOR operator is used to compare two expressions or boolean values and returns a boolean value as a result. XOR operator first converts the expression into a boolean value and then performs the final operation. It returns the TRUE value as a result when one of the operands either left or right evaluates to be TRUE. If both the operands (left and right) are either TRUE OR FALSE, the result of the XOR operator would be FALSE.
ADVERTISEMENT Popular Course in this category PHP DEVELOPER - Specialization | 8 Course Series | 3 Mock TestsStart Your Free Software Development Course
Web development, programming languages, Software testing & others
When talking about the syntax of XOR operator while using it in Php program, the programmer simply needs to use the keyword ‘XOR’ in between the 2 expressions or boolean values as given below:
$result = expression1 xor expression2
OR
$result = TRUE xor FALSE
Some of the important points related to the working of XOR logical operator in Php are given below:
Some of the examples showing the usage of XOR operator in a Php program are given below:
Code:
<!DOCTYPE html> <html> <body> <?php $dist_cov = 25; $time = 2; $speed = 12; if($dist_cov > $speed xor $speed > $time) { echo "Distance covered is greater than speed and speed is greater than time"; } else { echo "Either distance covered is less than speed or the speed is less than time"; } ?> </body> </html>
Output:
Explanation:
In the above code, three variables, i.e. dist_cov, time, and speed are declared with their specific values. Condition is checked on these 3 variables using the if statement. Php operator ‘xor’ is used in order to evaluate the boolean result of the ‘IF’ statement. It will convert the expression into a boolean statement first and then perform the ‘xor’ operation on it. As it results to be TRUE, ‘xor’ TRUE, ‘ELSE’ part of the code is executed and printed on the console. As we know in xor ‘TRUE’ xor ‘TRUE’ is FALSE.
Code:
<!DOCTYPE html> <html> <body> <?php $team_01 = TRUE; $team_02 = FALSE; if($team_01 xor $team_02) { echo "Team 1 can win"; } else { echo "We cannot say anything"; } ?> </body> </html>
Output:
Explanation:
In the above code, direct boolean values, TRUE and FALSE are declared in the variables ‘team_01’ and ‘team_02’. Condition is checked directly on the boolean values using the ‘IF’ statement. As TRUE xor FALSE evaluates to be TRUE, it results in the execution of the ‘IF’ part of the code and printing the desired output on the console.
Code:
<!DOCTYPE html> <html> <body> <?php $x = "hello"; $z = 30; if ($x == "hell" xor $z ==(40-10*7+60)) { echo "Congratulations!! you are right!!"; } else { echo "Sorry you are wrong !!"; } ?> </body> </html>
Output:
Explanation:
In the above code, a string variable ‘x’ and an integer variable ‘z’ is declared with the values ‘hello’ and 30 respectively. Expression is evaluated using the ‘IF’ statement. In the IF statement, the value of the ‘x’ variable is wrong (instead of hello, the string is hell) so the left part of the expression evaluates to be ‘FALSE’. In the right part, (40-10*7+60)= 30 which is equal to the ‘z’ variable. SO it evaluates to be ‘TRUE’. Performing the ‘xor’ on it, results in TRUE. So the ‘IF’ part of the code will get evaluated and the output ‘Congratulations!! you are right!!’ will get printed on the console.
Code:
<!DOCTYPE html> <html> <body> <?php $x = "hello"; $z = "world"; if ($x == "hello" xor $z =="world") { echo "Its Hello World"; } if ($x == "hello" xor $z == "work") { echo "Its Hello Work"; } else { echo "Sorry Its something else!!"; } ?> </body> </html>
Output:
Explanation:
In the above code, 2 string variables ‘x’ and ‘z’ are declared with the values ‘hello’ and ‘world’ respectively. Expression is evaluated using the ‘IF’ and ‘ELSE’ statements. In the first ‘IF’ statement, as both the left and right sides of the expression evaluates to be TRUE, the result of TRUE ‘xor’ TRUE is FALSE. So it will move to the next IF statement, evaluating which the left side of the expression is TRUE whereas the right side of the expression is FALSE. Performing the ‘xor’ operation on its results to be TRUE. So the corresponding statements of the IF block would be executed and are printed on the console.
Some of the advantages of using the XOR operator in Php are given below:
The above description clearly explains what an XOR operator is in Php and how it is used for the logical comparison of 2 expressions or boolean values. When more than one operator like arithmetic, logical, and comparison operators are used in a single expression, there are many chances of unexpected results. So in order to use it, programmers must keep the expression having XOR operator in parentheses in order to avoid any confusion.
The above is the detailed content of PHP XOR. For more information, please follow other related articles on the PHP Chinese website!