in_array

(PHP 4, PHP 5, PHP 7)

in_array����������Ƿ����ij��ֵ

˵��

in_array ( mixed $needle , array $haystack [, bool $strict = FALSE ] ) : bool

�����룬�ڴ󺣣�haystack���������루 needle�������û������ strict ��ʹ�ÿ��ɵıȽϡ�

����

needle

��������ֵ��

Note:

��� needle ���ַ�������Ƚ������ִ�Сд�ġ�

haystack

�����������顣

strict

������������� strict ��ֵΪ TRUE �� in_array() ���������� needle �������Ƿ�� haystack �е���ͬ��

����ֵ

����ҵ� needle �򷵻� TRUE�����򷵻� FALSE��

����

Example #1 in_array() ����

<?php
$os 
= array("Mac""NT""Irix""Linux");
if (
in_array("Irix"$os)) {
    echo 
"Got Irix";
}
if (
in_array("mac"$os)) {
    echo 
"Got mac";
}
?>

�ڶ�������ʧ�ܣ���Ϊ in_array() �����ִ�Сд�ģ��������ϳ�����ʾΪ��

Got Irix

Example #2 in_array() �ϸ����ͼ������

<?php
$a 
= array('1.10'12.41.13);

if (
in_array('12.4'$atrue)) {
    echo 
"'12.4' found with strict check\n";
}

if (
in_array(1.13$atrue)) {
    echo 
"1.13 found with strict check\n";
}
?>

�������̻������

1.13 found with strict check

Example #3 in_array() ����������Ϊ needle

<?php
$a 
= array(array('p''h'), array('p''r'), 'o');

if (
in_array(array('p''h'), $a)) {
    echo 
"'ph' was found\n";
}

if (
in_array(array('f''i'), $a)) {
    echo 
"'fi' was found\n";
}

if (
in_array('o'$a)) {
    echo 
"'o' was found\n";
}
?>

�������̻������

  'ph' was found
  'o' was found

�μ�

  • array_search() - ������������������ֵ������ɹ��򷵻��׸���Ӧ�ļ���
  • isset() - �������Ƿ������ò��ҷ� NULL
  • array_key_exists() - ����������Ƿ���ָ���ļ���������