write_update.php 에 금지 단어 필터링 추가하기
사용하는 게시판 스킨 폴더에 write_update.head.skin.php 파일 생성 후 아래 코드룰 추가합니다.
[code]
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
function word_filter_check($subject, $content, $config)
{
$mod_subject = strtolower($subject);
$mod_content = strtolower(strip_tags($content));
$filter = explode(",", trim($config['cf_filter']));
$count = count($filter);
$error = '';
for ($i=0; $i<$count; $i++) {
$str = $filter[$i];
// 제목 필터링 (찾으면 중지)
$pos = strpos($mod_subject, $str);
if ($pos !== false) {
$error .= '제목에 금지단어(\''.$str.'\')가 포함되어있습니다.';
break;
}
// 내용 필터링 (찾으면 중지)
$pos = strpos($mod_content, $str);
if ($pos !== false) {
$error .= '내용에 금지단어(\''.$str.'\')가 포함되어있습니다.';
break;
}
}
if($error != '')
die($error);
}
// 관리자가 아닐 경우 제목, 내용에서 금지단어 체크
if(!$is_admin)
word_filter_check($wr_subject, $wr_content, $config);
?>
[/code]
[code]
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
function word_filter_check($subject, $content, $config)
{
$mod_subject = strtolower($subject);
$mod_content = strtolower(strip_tags($content));
$filter = explode(",", trim($config['cf_filter']));
$count = count($filter);
$error = '';
for ($i=0; $i<$count; $i++) {
$str = $filter[$i];
// 제목 필터링 (찾으면 중지)
$pos = strpos($mod_subject, $str);
if ($pos !== false) {
$error .= '제목에 금지단어(\''.$str.'\')가 포함되어있습니다.';
break;
}
// 내용 필터링 (찾으면 중지)
$pos = strpos($mod_content, $str);
if ($pos !== false) {
$error .= '내용에 금지단어(\''.$str.'\')가 포함되어있습니다.';
break;
}
}
if($error != '')
die($error);
}
// 관리자가 아닐 경우 제목, 내용에서 금지단어 체크
if(!$is_admin)
word_filter_check($wr_subject, $wr_content, $config);
?>
[/code]
댓글 3개
11년 전
관리자도 금지단어가 체크가 되는데요.....
6년 전
이건 단어를 어떻게 추가하는거에요?
meet100
2년 전
금지 단어 필터링
게시판 목록
그누보드5 팁자료실
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 공지 | 3년 전 | 4403 | ||
| 264 | 11년 전 | 6007 | ||
| 263 | 11년 전 | 8289 | ||
| 262 | 11년 전 | 8141 | ||
| 261 |
|
11년 전 | 6356 | |
| 260 | 11년 전 | 6240 | ||
| 259 | 11년 전 | 7886 | ||
| 258 | 11년 전 | 10762 | ||
| 257 |
cutecute
|
11년 전 | 12042 | |
| 256 | 11년 전 | 9907 | ||
| 255 | 11년 전 | 11586 | ||
| 254 | 11년 전 | 7818 | ||
| 253 | 11년 전 | 12133 | ||
| 252 |
|
11년 전 | 5093 | |
| 251 | 11년 전 | 7797 | ||
| 250 | 11년 전 | 7659 | ||
| 249 | 11년 전 | 5589 | ||
| 248 | 11년 전 | 14325 | ||
| 247 | 11년 전 | 11543 | ||
| 246 | 11년 전 | 6418 | ||
| 245 | 11년 전 | 6846 | ||
| 244 | 11년 전 | 8967 | ||
| 243 | 11년 전 | 8144 | ||
| 242 |
끝없는사랑
|
11년 전 | 8488 | |
| 241 | 11년 전 | 13266 | ||
| 240 | 11년 전 | 5573 | ||
| 239 | 11년 전 | 12643 | ||
| 238 | 11년 전 | 8058 | ||
| 237 | 11년 전 | 7615 | ||
| 236 | 11년 전 | 8405 | ||
| 235 |
미라클OnAir
|
11년 전 | 8084 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기