The mysteries of auto-increment and auto-increment operations in PHP _ PHP Tutorial

Source: Internet
Author: User
The mysteries of the auto-increment and auto-increment operations in PHP. First, let's take a look at the questions about the auto increment and auto increment operations in PHP: $ a1; $ B $ a; if ($ B $ a ++) echotrue; elseechofalse; first, creates a variable $ a and describes the mysteries of the auto-increment and auto-increment operations in PHP.

First, let's take a look at the interview question:

$ A = 1; $ B = & $ a; if ($ B = $ a ++) echo "true"; else echo "false ";

First, create a variable $ a and set the value to 1;

Then, a variable $ B is created and used as a reference to $;

Finally, this judgment statement contains two Opcodes: POST_INC and IS_EQUAL. First, the Post-auto-increment statement (POST_INC) is executed. first, 1 is returned, and then $ a is auto-incremented to 2 because $ B is a reference of $, $ B is also 2. The comparison statement (IS_EQUAL) is executed, because the value of $ B is 2, and the return value of $ a ++ is 1, so they are not equal.

Similar interview questions include:

$ A = 1; $ B = & $ a; $ B = $ a ++; echo "a: $ a; B: $ B ";



Else first take a look at an interview question: $ a = 1; $ B = $ a; if ($ B = $ a ++) echo "true"; else echo "false "; first, create a variable $ a and...

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.