An if judge, find a day can not find errors, only.

Source: Internet
Author: User
The code is as follows:
if ($webstate!== "Y" or $webstate!== "N") {echo ""; exit;}


My idea is: $ only two cases, one is Y, the other is n, if there is a third case, the error.

I now if only one condition, it is normal, if plus or more one condition, it is not normal (whether it is equal to Y or equal to n will error. )


Reply to discussion (solution)

My idea is: $ only two cases, one is Y, the other is n, if there is a third case, the error.

According to you, the third case is not Y and not n, it should be with and not with OR.

Wrong with the logical relationship.

if ($webstate!== "Y" | | $webstate!== "N") {
//
}else{
//
}

if ($webstate!== "Y" and $webstate!== "N")
Or
if (! ($webstate = = "Y" or $webstate = = "N"))

My idea is: $ only two cases, one is Y, the other is n, if there is a third case, the error.

According to you, the third case is not Y and not n, it should be with and not with OR.



I walked into a dead end, thank you.
  • 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.