Home > php教程 > php手册 > body text

PHP in_array()函数的使用

WBOY
Release: 2016-06-21 08:52:35
Original
1376 people have browsed it

定义和用法
in_array() 函数在数组中搜索给定的值。
语法
in_array(value,array,type)

参数     描述
value     必需。规定要在数组搜索的值。
array     必需。规定要搜索的数组。
type     可选。如果设置该参数为 true,则检查搜索的数据与数组的值的类型是否相同。
说明
如果给定的值 value 存在于数组 array 中则返回 true。如果第三个参数设置为 true,函数只有在元素存在于数组中且数据类型与给定值相同时才返回 true。
如果没有在数组中找到参数,函数返回 false。
注释:如果 value 参数是字符串,且 type 参数设置为 true,则搜索区分大小写。
例子
$planet = array(
'jsp',
'php',
'asp'
);

$temp = 'php';

if(in_array('php',$planet))
{
    echo 'php 存在于数组$planet中';
    echo '
';
    echo '
';
}
if(in_array($temp,$planet))
{
    echo $temp.'存在于数组$planet中';
    echo '
';
    echo '
';
}
else
{
    echo $temp.'不存在于数组$planet中';
    echo '
';
    echo '
';
}
?>
输出:
php 存在于数组$planet中
php存在于数组$planet中



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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!