- PHP 正则表达式(PCRE)
- PHP 图像处理
- PHP 5 Array 函数
- PHP 5 Calendar 函数
- PHP cURL 函数
- PHP 5 Date/Time 函数
- PHP 5 Directory 函数
- PHP Error 和 Logging 函数
- PHP 5 Filesystem 函数
- PHP Filter 函数
- PHP FTP 函数
- PHP HTTP 函数
- PHP Libxml 函数
- PHP Mail 函数
- PHP 5 Math 函数
- PHP 杂项 函数
- PHP 5 MySQLi 函数
- PHP 5 SimpleXML 函数
- PHP lcfirst() 函数
- PHP 5 String 函数
- PHP XML Parser 函数
- PHP Zip File 函数
- PHP 5 时区
PHP in_array() 函数
实例
在数组中搜索值 "zyiz" ,并输出一些文本:
$sites = array("Google", "zyiz", "Taobao", "Facebook");
if (in_array("zyiz", $sites))
{
echo "找到匹配项!";
}
else
{
echo "没有找到匹配项!";
}
定义和用法
in_array() 函数搜索数组中是否存在指定的值。
语法
bool in_array ( mixed $needle , array $haystack [, bool $strict = FALSE ] )
参数 | 描述 |
---|---|
needle | 必需。规定要在数组搜索的值。 |
haystack | 必需。规定要搜索的数组。 |
strict | 可选。如果该参数设置为 TRUE,则 in_array() 函数检查搜索的数据与数组的值的类型是否相同。 |
技术细节
返回值: | 如果在数组中找到值则返回 TRUE,否则返回 FALSE。 |
---|---|
PHP 版本: | 4+ |
更新日志 | 自 PHP 4.2 起,search 参数可以是一个数组。 |
更多实例
实例 1
使用所有的参数:
$people = array("Peter", "Joe", "Glenn", "Cleveland", 23);
if (in_array("23", $people, TRUE))
{
echo "Match found<br>";
}
else
{
echo "Match not found<br>";
}
if (in_array("Glenn",$people, TRUE))
{
echo "Match found<br>";
}
else
{
echo "Match not found<br>";
}
if (in_array(23,$people, TRUE))
{
echo "Match found<br>";
}
else
{
echo "Match not found<br>";
}
完整的 PHP Array 参考手册
上一篇:PHP extract() 函数
下一篇:PHP key() 函数
关注微信小程序
扫描二维码
程序员编程王