php in_array 사용법 배열값 확인하기

in_array

 

(PHP 4, PHP 5, PHP 7)

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

 

 

설명 ¶

 

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

 

 

인수 ¶

 

needle

찾을 값.

 

Note:

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

haystack

배열.

 

strict

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

 

 

반환값 ¶

 

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()가 대소문자를 구분하므로 두번째 조건은 실패하고, 위 프로그램은 다음을 출력합니다:

 

output : 

 

Got Irix

 

 

 

Example #2 in_array()에 strict 예제

 

<?php

$a = array('1.10', 12.4, 1.13);

 

if (in_array('12.4', $a, true)) {

    echo "'12.4' found with strict check\n";

}

 

if (in_array(1.13, $a, true)) {

    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 



위 예제는 php.net에서 가져온것이고 거기에 제 설명을 간미한것입니다.
|

댓글 1개

잘 읽었습니다 :)
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
10년 전 조회 1,639
10년 전 조회 1,622
10년 전 조회 1,688
10년 전 조회 1,597
10년 전 조회 1,777
10년 전 조회 1,691
10년 전 조회 1,605
10년 전 조회 1,596
10년 전 조회 1,629
10년 전 조회 1,638
10년 전 조회 1,560
10년 전 조회 1,510
10년 전 조회 1,496
10년 전 조회 1,522
10년 전 조회 1,941
10년 전 조회 1,547
10년 전 조회 1,664
10년 전 조회 1,597
10년 전 조회 1,837
10년 전 조회 1,654
10년 전 조회 1,566
10년 전 조회 1,604
10년 전 조회 1,633
10년 전 조회 1,748
10년 전 조회 1,697
10년 전 조회 1,580
10년 전 조회 1,618
10년 전 조회 2,573
10년 전 조회 2,450
10년 전 조회 1,998
10년 전 조회 2,578
10년 전 조회 1,642
10년 전 조회 2,044
10년 전 조회 2,282
10년 전 조회 1,784
10년 전 조회 1,719
10년 전 조회 1,692
10년 전 조회 1,560
10년 전 조회 1,726
10년 전 조회 1,735
10년 전 조회 2,241
10년 전 조회 1,658
10년 전 조회 1,753
10년 전 조회 1,731
10년 전 조회 2,643
10년 전 조회 1,795
10년 전 조회 1,659
10년 전 조회 1,761
10년 전 조회 1,776
10년 전 조회 1,853
10년 전 조회 1,661
10년 전 조회 1,747
10년 전 조회 2,082
10년 전 조회 2,023
10년 전 조회 1,999
10년 전 조회 1,556
10년 전 조회 1,651
10년 전 조회 1,614
10년 전 조회 1,574
10년 전 조회 1,793
10년 전 조회 1,567
10년 전 조회 1,878
10년 전 조회 1,556
10년 전 조회 1,887
10년 전 조회 1,585
10년 전 조회 1,815
10년 전 조회 2,405
10년 전 조회 1,721
10년 전 조회 1,780
10년 전 조회 1,646
10년 전 조회 2,701
10년 전 조회 2,329
10년 전 조회 1,922
10년 전 조회 1,847
10년 전 조회 1,655
10년 전 조회 1,801
10년 전 조회 2,471
10년 전 조회 2,514
10년 전 조회 3,168
10년 전 조회 2,263
10년 전 조회 2,153
10년 전 조회 2,646
10년 전 조회 1,779
10년 전 조회 1,741
10년 전 조회 1,734
10년 전 조회 1,734
10년 전 조회 1,809
10년 전 조회 1,928
10년 전 조회 2,175
10년 전 조회 1,724
10년 전 조회 2,176
10년 전 조회 2,145
10년 전 조회 1,892
10년 전 조회 1,765
10년 전 조회 1,748
10년 전 조회 1,783
10년 전 조회 1,751
10년 전 조회 1,742
10년 전 조회 2,093
10년 전 조회 1,666