if (0 = = ' abc ') Why would it pass

Source: Internet
Author: User
if (0== ' abc ')
Why would the IF (0== ' abc ') be represented as true? Principle of seeking advice

------Solution--------------------
if (0 = = intval (' abc ')) weak type, the latter will be converted to the previous type, then the comparison

You need to use 0 = = = ' abc '
------Solution--------------------
Because ' ABC ' was strongly turned into (int) ' ABC ', and 0 = = intval (' abc ').

This behavior has not been noticed AH. I wipe, PHP which is going to reverse the day.
------Solution--------------------
strings and numbers want to judge, then will take the string int value, so ABC in the sense of int is 0, so equal, you can use = = = to judge, so even with the type also judged
------Solution--------------------
This comparison is not strict. At least use = = =
------Solution--------------------
PHP Code
Var_dump ((int) ' abc '); Int (0)
------Solution--------------------
LS two bit answered. if (0== ' abc ') equals if (0==intval (' abc '))
  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.