Why the result is the result below, please Daniel help explain

Source: Internet
Author: User
 
   
Why the result is the result below, please Daniel help explain
BOOL (TRUE)
Int (8)


Reply to discussion (solution)

$a was assigned to the 6&& $b =7
Original equivalent to $ A = (6 && $b =7)
returns BOOL (TRUE) because (6 && $b =7) is True

$a = 4; $b = 5;if ($a =6 && $b =7) {//Because the priority of && is higher than = so it is $a = (6 && $b =7)    var_dump ($a, $b);//boo L (True) int (7)    $a + +;//logical value does not have arithmetic, $a does not change    $b + +;//$b plus a}echo var_dump ($a, $b);//bool (true) int (8)

Written in this way, should be able to help you understand (and the priority is lower than =)
$a = 4; $b = 5;if ($a =6 and $b =7) {    var_dump ($a, $b);//int (6) Int (7)    $a + +;    $b + +;} Echo var_dump ($a, $b);//int (7) Int (8)
  • Related Article

    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.