=== 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 is the scope of a variable defined outside a function?
List functions available to sort an php array?
In what are the ways you can encrypt the password ?
How long is csrf token?
Which of the delimiter is ASP style?
What is laracast?
Is it necessary to use closing tag in php?sometime without closing tag things work.why?
What is $_ get in php?
Can the value of a constant change during the script's execution?
Differentiate echo vs. Print statement.
Tell me how is the ternary conditional operator used in php?
What is php array function?