=== 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 the use of header() function in php?

0 Answers  


What is php session id?

0 Answers  


Is php a programming language?

0 Answers  


Do you know design patterns. List few?

0 Answers  


Give the case where we can use get and we can use post methods?

0 Answers  






How do you end a function in python?

0 Answers  


Define about declare construct?

0 Answers  


Tell me can you extend a final defined class?

0 Answers  


What is mysqli_fetch_array?

0 Answers  


What's diffrence between Get() and Post() Function

7 Answers  


what are the errors and when we get that particular errors.and who will give that errors

3 Answers  


Are parent constructors called implicitly inside a class constructor?

0 Answers  


Categories