Interview Questions

Will comparison of string "10" and integer 11 work in PHP?

PHP Interview Questions and Answers


(Continued from previous question...)

Will comparison of string "10" and integer 11 work in PHP?

Yes, internally PHP will cast everything to the integer type, so numbers 10 and 11 will be compared.

(Continued on next question...)

Other Interview Questions