PHP In_array function Use considerations _php Tips

Source: Internet
Author: User
In addition, we in the control structure comparison two numerical values are always, also should try to use = = = = (Of course, this also according to the specific business logic to choose more appropriate).

Little brother to explain why
Var_dump (In_array (0, Array (' s '));

The result of this remark is bool (true).

Because In_array will compare 0 and ' s ', 0 is the number type, ' s ' is a string type, and according to the instructions in the "Comparison Operators" chapter of the PHP manual, number and string

When compared, the string type is first converted to number, and then the comparison operation is performed. The result of ' s ' converting to number is 0, and the result of 0 = 0 is true, so the result of In_array (0, Array (' s ', ' SS ')) is also true

If you set the third parameter strict of In_array to true, the comparison will determine whether the value and type are equal. Returns true if all are equal, or false.

This is the only note.

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.