+ 3
What is difference between equal(==) and identical(===) operator in PHP?
7 ответов
+ 12
It is recommended to use === operator to avoid unnecessary actions. Good programmers prefer to use strict types. It makes it easier to find bugs when you use phpunit tests.
+ 4
Satnam what is use of it?
0
digan respuesta
0
It's a best practices for good developer to use ===