update : 2015.11.03
php.shukuma.com

검색:
 
 
값이 배열 안에 존재하는지 확인

in_array

(PHP 4, PHP 5, PHP 7)

in_array값이 배열 안에 존재하는지 확인

설명

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

haystack에서 needle을 찾습니다.

인수

needle

찾을 값.

Note:

needle이 문자열이면, 대소문자를 구분하여 비교합니다.

haystack

배열.

strict

세번째 인수 strictTRUE로 설정하면, in_array() 함수는 haystack 안에서 needle자료형도 확인합니다.

반환값

needle을 배열에서 찾으면 TRUE를, 아니면 FALSE를 반환합니다.

변경점

버전 설명
4.2.0 needle이 배열일 수 있습니다.

예제

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()에 strict 예제

<?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() - 설정된 변수인지 확인
  • array_key_exists() - 주어진 키와 인덱스가 배열에 존재하는지 확인