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
댓글 1개
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7630 | 10년 전 | 643 | ||
| 7629 |
|
10년 전 | 2368 | |
| 7628 | 10년 전 | 781 | ||
| 7627 |
|
10년 전 | 1013 | |
| 7626 |
|
10년 전 | 1772 | |
| 7625 | 10년 전 | 683 | ||
| 7624 | 10년 전 | 700 | ||
| 7623 |
|
10년 전 | 3052 | |
| 7622 | 10년 전 | 709 | ||
| 7621 |
leeleeleelee
|
10년 전 | 575 | |
| 7620 | 10년 전 | 533 | ||
| 7619 | 10년 전 | 474 | ||
| 7618 | 10년 전 | 1004 | ||
| 7617 | 10년 전 | 716 | ||
| 7616 | 10년 전 | 624 | ||
| 7615 | 10년 전 | 719 | ||
| 7614 | 10년 전 | 1238 | ||
| 7613 |
|
10년 전 | 2071 | |
| 7612 | 10년 전 | 1129 | ||
| 7611 | 10년 전 | 1393 | ||
| 7610 |
|
10년 전 | 1889 | |
| 7609 |
|
10년 전 | 1316 | |
| 7608 |
mwdkim
|
10년 전 | 1111 | |
| 7607 |
|
10년 전 | 1037 | |
| 7606 |
mwdkim
|
10년 전 | 3907 | |
| 7605 | 10년 전 | 680 | ||
| 7604 | 10년 전 | 1017 | ||
| 7603 | 10년 전 | 1638 | ||
| 7602 |
|
10년 전 | 1054 | |
| 7601 |
AniNest
|
10년 전 | 2775 | |
| 7600 |
port443
|
10년 전 | 1011 | |
| 7599 | 10년 전 | 937 | ||
| 7598 | 10년 전 | 1005 | ||
| 7597 | 10년 전 | 4562 | ||
| 7596 |
SeungYeon
|
10년 전 | 881 | |
| 7595 |
untitled
|
10년 전 | 2407 | |
| 7594 |
프로그래머7
|
10년 전 | 1716 | |
| 7593 |
untitled
|
10년 전 | 2351 | |
| 7592 |
untitled
|
10년 전 | 1927 | |
| 7591 |
untitled
|
10년 전 | 2669 | |
| 7590 |
아리마2001
|
10년 전 | 843 | |
| 7589 | 10년 전 | 1094 | ||
| 7588 |
|
10년 전 | 2906 | |
| 7587 | 10년 전 | 1296 | ||
| 7586 | 10년 전 | 658 | ||
| 7585 | 10년 전 | 1673 | ||
| 7584 | 10년 전 | 1403 | ||
| 7583 |
leeleeleelee
|
10년 전 | 1151 | |
| 7582 |
|
10년 전 | 1091 | |
| 7581 | 10년 전 | 1309 | ||
| 7580 | 10년 전 | 970 | ||
| 7579 |
|
10년 전 | 598 | |
| 7578 | 10년 전 | 1413 | ||
| 7577 |
|
10년 전 | 1864 | |
| 7576 | 10년 전 | 1378 | ||
| 7575 |
멋진남자임
|
10년 전 | 1456 | |
| 7574 | 10년 전 | 2101 | ||
| 7573 | 10년 전 | 3235 | ||
| 7572 | 10년 전 | 754 | ||
| 7571 |
|
10년 전 | 774 | |
| 7570 |
|
10년 전 | 1300 | |
| 7569 | 10년 전 | 1533 | ||
| 7568 |
this1mg
|
10년 전 | 1036 | |
| 7567 |
|
10년 전 | 750 | |
| 7566 | 10년 전 | 912 | ||
| 7565 |
Angel하늘
|
10년 전 | 981 | |
| 7564 |
seoldi
|
10년 전 | 1219 | |
| 7563 |
|
10년 전 | 1360 | |
| 7562 |
멋진남자임
|
10년 전 | 2066 | |
| 7561 | 10년 전 | 697 | ||
| 7560 |
leeleeleelee
|
10년 전 | 888 | |
| 7559 | 10년 전 | 5028 | ||
| 7558 |
RinaP
|
10년 전 | 766 | |
| 7557 |
|
10년 전 | 1227 | |
| 7556 | 10년 전 | 1182 | ||
| 7555 |
hyohyojj1234
|
10년 전 | 1647 | |
| 7554 | 10년 전 | 1086 | ||
| 7553 |
senseme
|
10년 전 | 1328 | |
| 7552 |
ehdltdoit
|
10년 전 | 1425 | |
| 7551 |
|
10년 전 | 1812 | |
| 7550 |
leeleeleelee
|
10년 전 | 1576 | |
| 7549 | 10년 전 | 2411 | ||
| 7548 | 10년 전 | 1829 | ||
| 7547 |
멋진남자임
|
10년 전 | 1948 | |
| 7546 | 10년 전 | 993 | ||
| 7545 |
ILMare1003
|
10년 전 | 1271 | |
| 7544 |
|
10년 전 | 1232 | |
| 7543 | 10년 전 | 878 | ||
| 7542 | 10년 전 | 649 | ||
| 7541 |
울라라라우
|
10년 전 | 855 | |
| 7540 | 10년 전 | 1591 | ||
| 7539 | 10년 전 | 917 | ||
| 7538 |
|
10년 전 | 1823 | |
| 7537 | 10년 전 | 3599 | ||
| 7536 |
Gaumi
|
10년 전 | 1398 | |
| 7535 |
프로그램은어려워
|
10년 전 | 1254 | |
| 7534 |
senseme
|
10년 전 | 1196 | |
| 7533 | 10년 전 | 1182 | ||
| 7532 | 10년 전 | 846 | ||
| 7531 | 10년 전 | 2036 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기