PHP 값이 배열 안에 존재하는지 확인하는 in_array 함수
in_array 함수 in_array ( mixed $needle , array $haystack [, bool $strict = FALSE ] ) : bool Searches for needle in haystack using loose comparison unless strict is set. //엄격이 설정되어 있지 않으면 느슨한 비교를 사용하여 건초 더미에서 바늘을 검색합니다. Parameters needle > The searched value.(검색 값) haystack > The array.(배열) strict > If the third parameter strict is set to TRUE then the in_array() function will also check the types ..