[이윰] 본문 내용 추출시 특정 태그 제거하기

페이지 정보

yadolee 루루아빠 3,057 2016.05.09 17:45:25

평점

  • 평점 : 0점 (0명 참여)

본문

그누보드5/eyoom/classes/eyoom.class.php 를 열고 public function remove_editor_code($content) { 를 검색한다.

수정 전

    public function remove_editor_code($content) {
        $content = preg_replace("/\\n/","",$content);
        $content = preg_replace("/\s{2,}/","",$content);
        $content = preg_replace("/{CODE\s*\:([^}]*)}(.*?){\/CODE}/is","",$content);
        return $content;
    }
수정 후

    public function remove_editor_code($content) {
        $content = preg_replace("/\\n/","",$content);
        $content = preg_replace("/\s{2,}/","",$content);
        $content = preg_replace("/{CODE\s*\:([^}]*)}(.*?){\/CODE}/is","",$content);
        $content = preg_replace("/{http\s*\:([^}]*)}/i","",$content);        // 본문 내용 추출시 댓글 외부 이미지 코드 제거
        $content = preg_replace("!<iframe(.*?)<\/iframe>!is","",$content);        // 본문 내용 추출시 iframe 태그 제거
        $content = preg_replace("!<script(.*?)<\/script>!is","",$content);        // 본문 내용 추출시 script 태그 제거
        $content = preg_replace("!<style(.*?)<\/style>!is","",$content);        // 본문 내용 추출시 style 태그 제거
        return $content;
    }
상기 코드를 추가하면 게시글 목록과 최신글에서 본문 내용 추출시 iframe, script, style 이 제거된 후 텍스트만 표시된다.
추천인
  • 추천해 주세요
yadolee
6
루루아빠 - 회원등급 : 최고관리자 - 포인트 : 1,332,591
레벨 100
경험치 1,487,932

Progress Bar 9.78%

- 가입일 : 2015-03-04 03:24:54
- 서명 : KNOW YOUR LIMITS BUT NEVER STOP TRYING TO EXCEED THEM !!
- 자기소개 : 루루의 자랑 루루아빠랍니다~~

댓글

첫 번째 댓글을 남겨 주세요

Total 7622239 페이지

제목 글쓴이 날짜 조회 추천
기타  🏆 Font Awesome 4.7.0 - Transportation, Gender, Medical, Currency, Payment, Brand 루루아빠 2017.11.20 5,026 0
이윰  🏆 📸 Eyoom Builder 1.3.0 시즌3 루루아빠 2017.11.21 3,099 0
이윰  🏆 Eyoom Builder 1.3.1 패치 루루아빠 2017.11.21 2,406 0
이윰  🏆 Eyoom Builder 1.3.2 패치 루루아빠 2017.11.21 2,748 0
이윰  🏆 Eyoom Builder 1.3.3 패치 루루아빠 2017.11.21 2,496 0
이윰  🏆 Eyoom Builder 1.3.4 패치 루루아빠 2017.11.21 2,655 0
이윰  🏆 Eyoom Builder 1.3.5 패치 루루아빠 2017.11.21 3,263 0
이윰  🏆 Eyoom Builder 1.3.6 패치 루루아빠 2017.11.21 2,622 0
이윰  🏆 Eyoom Builder 1.3.7 패치 루루아빠 2017.11.21 3,013 0
이윰  🏆 Eyoom Builder 1.3.8 패치 루루아빠 2017.11.21 2,798 0
이윰  🏆 Eyoom Builder 1.3.9 패치 루루아빠 2017.11.21 2,611 0
이윰  🏆 Eyoom Builder 1.3.10 패치 루루아빠 2017.11.21 2,602 0
이윰  🏆 Eyoom Builder 1.3.11 패치 루루아빠 2017.11.21 2,847 0
이윰  🏆 Eyoom Builder 1.3.12 패치 루루아빠 2017.11.21 3,098 0
이윰  🏆 Eyoom Builder 1.3.13 패치 루루아빠 2017.11.21 2,730 0
그누•영카트  🏆 그누보드 5.2.9.6 패치 루루아빠 2017.11.21 2,772 0
그누•영카트  🏆 영카트 5.2.9.6 패치 루루아빠 2017.11.21 3,180 0
이윰  🏆 이윰빌더 외부이미지 로컬 저장 https 보안서버도 적용하기 루루아빠 2017.11.22 2,894 0
이윰  🏆 이윰빌더 외부이미지 로컬 저장시 용량 줄이기 루루아빠 2017.11.23 2,670 0
이윰  🏆 이윰빌더 출석부 PHP 7.1.x에서 오류 해결하기 루루아빠 2017.11.24 3,034 0