Can someone help me understand these operators.
Thanks.
http://www.php.net/manual/en/language.operators.comparison.php
Manual page breaks down just about anything you could possibly want to know.
$i = 10;
$t = 5+5;
$i == $t TRUE
$i === $t FALSE
That is an incorrect example
<?php
$a = 10;
$b = 5+5;
$c = '5+5';
var_dump($a);
var_dump($b);
var_dump($c);
var_dump($a == $b);
var_dump($a === $b);
var_dump($b === $c);
int 10
int 10
string '5+5' (length=3)
boolean true
boolean true
boolean false
You can get the explanation with examples at the following link
in short what all others are trying to explain you is '==' only checks the contents of both the operands for equality and '===' compares for types (of both operands) too.
The difference between both of them is that :
"==" -> It only checks for equality without checking the datatype
"===" -> It checks for equality and also both the variables should be of same datatype
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.