Explain me that whether the comparison of string “50ᕙ and integer 60 will work in php or not?
Answer Posted / Rahul Pratap Singh
In PHP, comparing a string with an integer as you've shown (string '50á•™' vs. integer 60) will not produce the expected result because they are different data types. To perform such comparison, PHP would implicitly convert one of them to match the other's data type but the outcome may not be what you desire. To avoid unexpected behavior, it is recommended to always compare strings with strings and integers with integers.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers