=== represents what?
Answers were Sorted based on User's Feedback
Answer / bhavphp
=== means strictly comparison of operands. Comparison is
case sensitive and datatype related.
eg.
"hello"==="Hello" returns false
"hello"=="Hello" returns true
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / priya ranganathan
$a === $b
returns true if $a has same value as $b and $a and $b are of
the same type
| Is This Answer Correct ? | 1 Yes | 1 No |
What are the advantages of oops in php?
Which programming language does php resemble?
What is the use of header in php?
What does the php error 'parse error in php - unexpected t_variable at line x' means?
What's the diff. between include() and Include_once().
What is framework in php?
Define urlencode() and urldecode() used in php?
Which MySQL function would you use to select a database?
Can you explain, when to use if-else if-else over switch statements?
How is it possible to know the number of rows returned in result set?
How come the code works, but doesn’t for two-dimensional array of mine?
What is cms php?