else if 문의드립니다.
본문
else if( strpos($content, "단어") !== false )
{
echo <<< EOD
{
"message": {
"text": "내용"
}
}
EOD;
}
else if( strpos($content, "단어") !== false ) 여기에서 여러단어를 사용하고 싶은데요
예를들면
else if( strpos($content, "단어","단어2",단어3","단어4") !== false )
이렇게 사용할려면 어떻게 해야되나요?
!-->답변 1
function strpos_arr($content, $word) {
return preg_match( "/$word/", $content );
}
echo strpos_arr($content, '단어1|단어2');
답변을 작성하시기 전에 로그인 해주세요.