|
|
|
18년 전
|
조회 4,236
|
|
|
|
18년 전
|
조회 3,889
|
|
|
|
18년 전
|
조회 3,702
|
|
|
|
18년 전
|
조회 3,532
|
|
|
|
18년 전
|
조회 3,767
|
|
|
|
18년 전
|
조회 3,717
|
|
|
|
18년 전
|
조회 3,783
|
|
|
|
18년 전
|
조회 4,122
|
|
|
|
18년 전
|
조회 3,564
|
|
|
|
18년 전
|
조회 3,637
|
|
|
|
18년 전
|
조회 3,616
|
|
|
|
18년 전
|
조회 3,901
|
|
|
|
18년 전
|
조회 3,578
|
|
|
|
18년 전
|
조회 4,042
|
|
|
|
18년 전
|
조회 3,897
|
|
|
|
18년 전
|
조회 3,976
|
|
|
|
18년 전
|
조회 3,581
|
|
|
|
18년 전
|
조회 3,601
|
|
|
|
19년 전
|
조회 4,152
|
|
|
|
19년 전
|
조회 3,623
|
댓글 4개
$content = $content // 내용이라고 치면...
$new_content = str_replace("[굵게]","<b>",$content);
$new_content = str_replace("[/굵게]","</b>",$content);
echo $new_content;
너무 원시적인가요?
<span class=content>
<?
$content = $content;
$new_content = str_replace("[/굵게]","</b>",$content);
$new_content = str_replace("[굵게]","<b>",$content);
echo $new_content;
?>
</span>
이렇게 넣었더니 [굵게] 이부분만 적용되서
진하게[/굵게] 이렇게 출력됩니다.
1번째에 [굵게] 2번째에 [/굵게] 로 쓰세요.
순서가 바뀌에 [/굵게]부분이 적용이 안되어서 그렇습니다.
$new_content = str_replace("[/굵게]","</b>",$new_content);
아니면
$new_content = str_replace("[/굵게]","</b>",$content);
$new_content = str_replace("[굵게]","<b>",$new_content);