How to set the third parameter of In_array to true strict

Source: Internet
Author: User

Var_dump (In_array (0, Array (' s '));

The result of this sentence 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 PHP Tutorial manual, number and string

When comparing, the string type is first converted to number, and then the comparison operation. The result of ' s ' conversion 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 the third parameter of In_array is set to True, the comparison will determine whether the value and type are equal. Returns true if all are equal, otherwise returns false.

About PHP In_array syntax

BOOL in_array2881064151 (mixed $needle, array $haystack [, BOOL $strict]) return value is straight or false

<?php
$a = Array (' 1.10 ', 12.4, 1.13);

if (In_array (' 12.4 ', $a, true)) {
echo "' 12.4 ' found with strict checkn";
}

if (In_array (1.13, $a, true)) {
echo "1.13 found with strict checkn";
}
?>

How to set the third parameter of In_array to true strict

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.