본문 바로가기
Developer/PHP

strpos / 문장내 단어 내포 확인

by MindOpener 2017. 7. 19.
반응형

instr(인수1, 인수2, 인수3, 인수4)

인수1 - 검색 시작위치

인수2 - 검색될 문장

인수3 - 검색할 단어

인수4 - 대소문자 구분 여부 (디폴트 0)

'금지어 필터링 가져온다 ㅇㅅㅇ)/
nSql = "select no_word from cms_board_noword where school_code='" & school_code & "'"
Set nRs = oConn.execute(nSql)

noword = false
If nRs.BOF Or nRs.EOF Then
Else
no_word = Split(nRs("no_word"), ",")
For i = 0 To UBound(no_word)
'response.write no_word(i) & "<br>"
If InStr(1, content, no_word(i), 0) > 0 Then 
noword = true
'err_msg("금지어가 포함되어 있어 글을 등록할 수 없습니다.")
End If
Next
End If

If noword = False Then

실행된다

else

실행할 수 없다.

end if

php에 같은 명령어===============================

strpos(인수1, 인수2)

인수1 - 검색될 문장

인수2 - 검색할 단어

$pos = strpos(인수1, 인수2);

if ($pos== false){

단어가 검색되지 않았다.

}else{

단어가 검색되었다.

}



출처: http://bookdari.tistory.com/16 [두다리`s 만물상회]

반응형

'Developer > PHP' 카테고리의 다른 글

PHP 를 위한 ASP 함수  (0) 2021.09.13
apache 기본 관리  (0) 2018.02.19
WP 유용한 플러그인  (0) 2016.05.31
WP - 관리자 로그인 로고 변경  (0) 2016.05.11
WP - 리비젼 파일의 제한 주기  (0) 2016.05.11