[mysql] Using explode and in_array
페이지 정보
본문
$str_array = explode(",", "one, two, three, four, five");
$find = 'one';
if(in_array($find,$str_array)){
echo "TRUE";
}
else
{
echo "FALSE";
}
추천0
관련링크
댓글목록
등록된 댓글이 없습니다.