멀티미디어 확장자 추가, 20자 자르기 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5275 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
misol 2009-01-07 15:12:15 +00:00
parent eba2bf30cf
commit 8f879111ca
5 changed files with 7 additions and 7 deletions

View file

@ -283,8 +283,8 @@
}
function getSummary($str_size = 50) {
// 영문이나 숫자가 연결되어서 20개 이상으로 연결시에 강제 띄움 시도
$content = preg_replace('/([a-z0-9\-\+:\/\.\~,\|\!\@\#\$\%\^\&\*\(\)\_\+]){20,}/is',"$0 ",$this->getContent(false,false));
// 영문이나 숫자가 연결되어서 20개 이상으로 연결시에 강제 띄움 시도 - {20,}으로 길이를 정하면, 20개 이상 문자열 맨 마지막에 스페이스를 추가할 뿐 원하는 의도는 달성되지 못함
$content = preg_replace('/([a-z0-9\-\+:\/\.\~,\|\!\@\#\$\%\^\&\*\(\)\_\+]){20}/is',"$0 ",$this->getContent(false,false));
// 태그 제거
$content = preg_replace('!<([^>]*?)>!is','', $content);