Php5.4 if ($ a = 'A' & 1) var_dump ($ A); how is the running result of boolean type?

Source: Internet
Author: User
PHP 5.4: {code...} running result: {code...} Q: Why is the result not string & #039; A & #039 ;? Php5.4
This code:

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

Running result:

Bool (true)

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

Reply content:

Php5.4
This code:

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

Running result:

Bool (true)

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

Because&&Is a logical operator,=Is the value assignment operator. The former has a higher priority than the latter. Do you understand?

&&Symbol must be higher=So the expression is actually like this$ A = ('A' & 1).
Php&&And|Operators return boolean values. UnlikeJs,
In js

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

This is the result for the landlord and php4.

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.