=== 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 |
List types of array are available in php?
Would you initialize your strings with single quotes or double quotes?
Is php front end or back end?
Why namespace is used in php?
How do I install php and apache on windows 10?
What are the four scalar types of php?
Why does php need server?
What is query string php?
Explain the difference between urlencode and urldecode?
How can we create a database using php?
How do you set the browser timeout?
What is the difference between the functions strstr() and stristr()?