⟩ Explain me the differences in comparison of variable values?
PHP defined 2 types of comparison: == and ===. Guess yourself what will be the result of each line:
☛ var_dump(1 == TRUE);
☛ var_dump(1.0 == TRUE);
☛ var_dump(1 === TRUE);
PHP defined 2 types of comparison: == and ===. Guess yourself what will be the result of each line:
☛ var_dump(1 == TRUE);
☛ var_dump(1.0 == TRUE);
☛ var_dump(1 === TRUE);
Tell me what is the use of "ksort" in php?
Tell me how stop the execution of a php scrip?
Do you know how to declare an array in php?
Tell me how to Retrieve a Cookie Value?
Tell me what is the use of isset() in php?
Tell me how to get the value of current session id?
Tell me what is needed to be able to use image function?
Tell me how is it possible to know the number of rows returned in result set?
Tell me how is it possible to return a value from a function?
Tell me how to initiate a session in PHP?