잔머리 팁> 검색에서 태그 안나오게... 정보
잔머리 팁> 검색에서 태그 안나오게...본문
검색해 보니까 많은 팁이 있지만..전 이렇게 해결을 해서
올려 봅니다
bbs/search.php
190라인 쯤 이 부분을
if ($read_level[$idx] <= $member['mb_level'])
{
$content = cut_str(get_text(strip_tags($row['wr_content'])),300,"…");
if (strstr($sfl, 'wr_content'))
$content = search_font($stx, $content);
}
.
.
.
if ($read_level[$idx] <= $member['mb_level'])
{
$text_tag = array("/ /","/∼/","/"/");//추가
$content = cut_str(get_text(strip_tags(preg_replace($text_tag, " ", $row[wr_content]))),300,"…");//수정
if (strstr($sfl, 'wr_content'))
$content = search_font($stx, $content);
}
이렇게 한줄을 추가, 수정 해서 태그를 없앴습니다
올려 봅니다
bbs/search.php
190라인 쯤 이 부분을
if ($read_level[$idx] <= $member['mb_level'])
{
$content = cut_str(get_text(strip_tags($row['wr_content'])),300,"…");
if (strstr($sfl, 'wr_content'))
$content = search_font($stx, $content);
}
.
.
.
if ($read_level[$idx] <= $member['mb_level'])
{
$text_tag = array("/ /","/∼/","/"/");//추가
$content = cut_str(get_text(strip_tags(preg_replace($text_tag, " ", $row[wr_content]))),300,"…");//수정
if (strstr($sfl, 'wr_content'))
$content = search_font($stx, $content);
}
이렇게 한줄을 추가, 수정 해서 태그를 없앴습니다
추천
3
3
댓글 5개
잔머리팁 ㅋㅋ 감솨
감사합니다...
넘 좋습니다. 감사합니다.
· ' “ ”
추가 해야할 것들이 이런 것들이 있더군요.
또 있을지도 모르겠네요.
추가 해야할 것들이 이런 것들이 있더군요.
또 있을지도 모르겠네요.
정말 감사합니다. 딱 필요한 곳을 해결했습니다. 넘 좋아요~