«strpos» 태그된 질문

14
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!'; } 이거 사용하면 안 되니까 이런게 있으면 좋을 텐데
91 php  arrays  strpos 

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.