strpos에서 배열을 바늘로 사용 strpos문자열을 검색 할 때 바늘 배열에를 어떻게 사용 합니까? 예를 들면 : $find_letters = array('a', 'c', 'd'); $string = 'abcdefg'; if(strpos($string, $find_letters) !== false) { echo 'All the letters are found in the string!'; } 이거 사용하면 안 되니까 이런게 있으면 좋을 텐데 @Dave http://www.php.net/manual/en/function.strpos.php#107351 에서 업데이트 된 스 니펫 function strposa($haystack, $needles=array(), $offset=0) { $chr = arra..