Differences between or and | AND & amp; in php _ PHP Tutorial

Source: Internet
Author: User
Summary of the differences between or and | AND & amp; in php. There is no difference in itself, habits, but sometimes it involves the operator priority problem, the results will be different, record. For example, the copy code is as follows: $ p6or0; var_dump itself is no different. it is a habit, but sometimes it involves the operator priority problem. The results will be different and recorded.
For example:

The code is as follows:


$ P = 6 or 0;
Var_dump ($ p); // int (6)

$ P = 6 | 0;
Var_dump ($ p); // bool (true)

$ P = 6 and 0;
Var_dump ($ p); // int (6)

$ P = 6 & 0;
Var_dump ($ p); // bool (false)


Because the value assignment has a higher priority than and or, the value is assigned first. The value assignment is lower than the value & |. Therefore, the logical operators are executed first, the logical operations are performed first, AND then the values are assigned.

Operator. For example, the code is as follows: $ p = 6 or 0; var_dump...

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.