[굵게]라고 치면 <b>명령이 되게 할수 없나요

· 2007-04-17 (화) 19:33:55 · 3758 · 4
html용 소스 여러가지를 사용해보고 싶은데
예를 들어 내용부분에

[굵게]글자를 두껍게[/굵게]
[흐르기]marquee소스를 사용하기[/흐르기]

라고 치면

글자를 두껍게
등등의 효과가 출력되어 나오게 할수 없나요?

|

댓글 4개

2007-04-17 (화) 20:37:45
출력할때..

$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>",$content);
$new_content = str_replace("[/굵게]","</b>",$new_content);

아니면

$new_content = str_replace("[/굵게]","</b>",$content);
$new_content = str_replace("[굵게]","<b>",$new_content);
댓글을 작성하시려면 로그인이 필요합니다.

그누3질답

9,564건
+
제목 글쓴이 날짜 조회
07-05-15 조회 3,809
07-05-14 조회 3,890
07-04-27 조회 4,206
07-04-24 조회 3,665
07-04-17 조회 3,759
07-04-09 조회 3,708
07-04-09 조회 4,010
07-04-05 조회 3,687
07-03-26 조회 4,147
07-03-24 조회 4,018
07-03-20 조회 4,090
07-03-19 조회 3,680
07-03-09 조회 3,704
07-03-04 조회 4,244
07-03-03 조회 3,716
07-03-02 조회 3,882
07-02-27 조회 3,756
07-02-23 조회 4,558
07-02-07 조회 3,875
07-02-05 조회 3,773