Posted On: Apr 15, 2024
== checks for same value and === checks for same value and same datatype for ex 123==123 returns true 123=='123' returne true 123===123 returns true 123==='123' returns false because one is integer datatype and another is string data type
Never Miss an Articles from us.
T_PAAMAYIM_NEKUDOTAYIM is scope resolution operator used as :: (double colon) .Basically, it used to call static methods/variables of a Class...
What is session in PHP. How to remove data from a session?..