Hey.
Question on PHP theory on comparison operators. These are <,>, <=,> =, ==! ...
To understand what will happen as a result of the operation, you need to understand TWO things :
What type of operands the interpreter EXPECTS to see when using the comparison operator .
How the interpreter converts one data type to another .
There are a total of 8 data types in the PHP language. The question is what data type the interpreter expects to see with different combinations of operands and operators, for example, comparing a string with integer, strings with a boolean type, integers with a boolean type, real numbers with a boolean type, a number and NULL , NULL and an array ...
If I compare the two lines to each other, then the ambiguity is obtained. How to resolve ambiguity? 