묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
memolenx 와 memo 차이점및 결과의 차이점 ?
2003.05.14 01:23
memolenx 와 memo 차이점및 결과의 차이점 좀 알려 주세요 ?
$header = str_replace("[notice_memo]",$memolenx,$header);
$header = str_replace("[notice_memo]",$memo,$header);
감사드립니다... ^^
$header = str_replace("[notice_memo]",$memolenx,$header);
$header = str_replace("[notice_memo]",$memo,$header);
감사드립니다... ^^
댓글 5
-
엔포게이트
2003.05.14 01:27
-
전현
2003.05.14 01:36
$subject = cut_str(stripslashes($data[subject]),$textlen)."</font></b>";
$date = date($datetype, $data[reg_date]);
$header = str_replace("[notice_memo]",$memo,$header);
=========================================================================
$memolenx = cut_str(stripslashes($memo),$memolen);
$subject = cut_str(stripslashes($data[subject]),$textlen)."</font></b>";
$date = date($datetype, $data[reg_date]);
$header = str_replace("[notice_memo]",$memolenx,$header);
좀더 자세한 소스 입니다 ^^; -
전현
2003.05.14 01:43
아래 소스는 제로보드 예전거이구요(버전 ?)
위에꺼는 최근버전 입니다.
아래꺼는 공지사항 추출시 [notic_memo] 일정이상 글자 출력후 나머지는 ......... 표시
위에꺼는 정상적으로 모든 글 내용 출력이 되더군요 한참만에 원인을 찾긴 찾았는데
왜그런지나 알고 싶어서요.. 초보의 한계인듯 ㅠ.ㅠ
엔포게이트님 답변 감사드립니다..
위 소스를 보시고 추가 답변 더 해주시면 더더욱 감사드립니다... ^^ plz -
엔포게이트
2003.05.14 02:46
$memolenx는 글자수, 즉 수치이구요
$memo는 공지내용 자체이기 때문 입니다.
만약 내용이 '안녕하세요' 라는 공지이면,
변수 $memolenx 에는 숫자 '10' 값이 들어가며, (영문기준이니 한글 한글자당 영문2글자 크기)
변수 $memo 에는 '안녕하세요' 내용 그대로 들어가있겠죠.
저도 초보라~~ 초보적인 답변이었습니다 ^^ -
특급잠수부
2003.05.14 10:43
cut_str --> 이 함수가 뭔지 알아야 되는데요..
단순히 길이를 구한다면 strlen을 썼을건데 UDF를 정의해놓았으니
function cut_str(인자1,인자2)
{
}
이부분이 있어야 무슨기능인지 저희가 보고 알려줄수 있습니다.
단순히 길이는 $memolen인것 같습니당..
$memo 는 내용의 글자자체를 의미하는 것 같습니다.