Home > Backend Development > PHP Tutorial > PHP in_array() 函数

PHP in_array() 函数

WBOY
Release: 2016-06-23 14:34:11
Original
808 people have browsed it

http://www.w3school.com.cn/php/func_array_in_array.asp

 

in_array(value,array,type)
Copy after login

如果给定的值 value 存在于数组 array 中则返回 true。如果第三个参数设置为 true,函数只有在元素存在于数组中且数据类型与给定值相同时才返回 true。

如果没有在数组中找到参数,函数返回 false。

 

注释:如果 value 参数是字符串,且 type 参数设置为 true,则搜索区分大小写。

 

in_array() 函数在数组中搜索给定的值。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template