in PHP by

Will a comparison of an integer 12 and a string "13" work in PHP?

1 Answer

0 votes
by
"13" and 12 can be compared in PHP since it casts everything to the integer type.
...