php5.4 this sentence if ($a = ' a ' &&1) var_dump ($a); How the result of the run is a Boolean type

Source: Internet
Author: User
Version php5.4
This piece of code:

if($a='A'&&1) var_dump($a);

Operation Result:

bool(true)

Q: Why is the result not A string ' A '?

Reply content:

Version php5.4
This piece of code:

if($a='A'&&1) var_dump($a);

Operation Result:

bool(true)

Q: Why is the result not A string ' A '?

Because && it is a logical operator, = it is the assignment operator, which has a higher precedence than the latter. Do you understand?

&&The symbol has a finite level = of precedence, so the expression is actually this way $a = ('A' && 1) .
Both the && and || operators in PHP return a Boolean value. Not like js ,
In JS

('A' && 1) === 1('A' || 1) === 'A'

Well, landlord, PHP4 is the result

  • 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.