=== 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 |
Can php run without apache?
Are php short tags acceptable to use?
How to join multiple strings into a single string?
Which is the best web server?
How does php work with apache?
Explain the visibility of the property or method?
How do you find the length of a string in php?
Write a PHP code to print following number pattern: 123 456 789
What is the goto statement useful for?
What are the security measures we have to take for our site not to hack by others?
What is the use of friend function in php?
Tell me what is the main difference between require() and require_once()?