=== represents what?

Answers were Sorted based on User's Feedback



=== represents what? ..

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

=== represents what? ..

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

Post New Answer

More PHP Interview Questions

What is $_ files in php?

0 Answers  


What is the difference between Split and Explode in PHP?

0 Answers   B-Ways TecnoSoft,


What is good average session duration?

0 Answers  


Tell me can you extend a final defined class?

0 Answers  


Is PHP an open source software?

0 Answers  






What’s the difference between sort(), assort() and ksort? Under what circumstances would you use each of these?

2 Answers  


Which function Returns the time of sunrise for a given day / location in PHP.

0 Answers  


Why and where do we use htaccess?

0 Answers  


Which is better get or post method?

0 Answers  


Is rent a variable cost?

0 Answers  


Which is the correct way to check if a session has already been started ?

0 Answers  


How to remove leading and trailing spaces from user input values in php?

0 Answers  


Categories