여기서 막혔어요 도와주세요~

문자열 치환함수인데요....
 
 
아래의 소스대로 하면,
 
mildly가 입력되면 이상il복부 가 출력됩니다. 순차적으로 일치하는 단어만을 출력하게 되는데요
 
이를 정확하게 일치하는 단어만 출력되게 하는 방법이 있을까요? mildly를 입력하면 "경미하게" 출력되게끔요
 
 
 
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가

function bad_Word($str)
 {     
$str=str_replace("m","이상",$str);
$str=str_replace("mil","경",$str);
$str=str_replace("dly","복부",$str);
$str=str_replace("ased","외전",$str);
$str=str_replace("localized","후방 관절",$str);
$str=str_replace("increased","증가된",$str);
$str=str_replace("mildly","경미하게",$str);

   
 return $str;
 }   

?>
 
 
 
 
 
 
 
아래는 내용출력부분 입니다
 
 
<?
                   //<!-- 단어변환-->
     if ($member[mb_level] >= "12"){echo "<span class='ct lh'>".$view[content]."</span>";}
      else{
      
      
      $content = bad_Word($view[content]);
      echo "<span id=\"writeContents\">".$content."</span>";
       }
        ?>
|

댓글 8개

$str=str_replace("mildly","경미하게",$str);
$str=str_replace("increased","증가된",$str);
$str=str_replace("localized","후방 관절",$str);
$str=str_replace("ased","외전",$str);
$str=str_replace("dly","복부",$str);
$str=str_replace("mil","경",$str);
$str=str_replace("m","이상",$str);


이렇게 반대로 하면 되지 않을까요 ^^;
치환하는 단어가 2만개입니다 ㅜㅡ
정확히 일치하는 문자열만 출력하는 방법이 없을까요?
글자길이로 소팅후 치환순서를 정한후 str_replace 에 array 인자로 넣어주심댈듯
function Word($str) {
$a_res = array("m"=>"이상", "mil"=>"경", "dly"=>"복부", "ased"=>"외전", "localized"=>"후방 관절", "increased"=>"증가된", "mildly"=>"경미하게");

return $a_res[$str];
}
치환 문자열과, 치환대상 문자열을 배열로 만들어서 저장하면 됩니다.
stop word(아마 공백이 되겠죠.) 단위로 나눠서 변환을 하면 됩니다.
연속되어 있는 문자는 위에서 얘기한것쩌럼 긴쪽부터 변환해야 합니다.
이렇게 해도 안돼요 ㅠㅠ

function bad_Word($str)
{
$a_res = array('m' =>'이상','mil'=>'경','dly'=>'복부','ased'=>'외전','localized'=>'후방 관절','increased'=>'증가된','mildly'=>'경미하게');
$str = str_replace($a_res, $str);
return $str;
}
제가 잘못이해했는지 모르겠습니다만, 정규표현식으로 하면 쉽게되지 않을까요??
답변 감사합니다^^
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
14년 전 조회 1,094
14년 전 조회 1,501
14년 전 조회 2,780
14년 전 조회 2,193
14년 전 조회 2,071
14년 전 조회 3,493
14년 전 조회 2,607
14년 전 조회 1,541
14년 전 조회 1,599
14년 전 조회 1,573
14년 전 조회 1,690
14년 전 조회 1,128
14년 전 조회 1,476
14년 전 조회 1,596
14년 전 조회 3,182
14년 전 조회 1,473
14년 전 조회 1,206
14년 전 조회 1,198
14년 전 조회 3,548
14년 전 조회 1,313
14년 전 조회 2,036
14년 전 조회 2,083
14년 전 조회 1,263
14년 전 조회 1,957
14년 전 조회 1,352
14년 전 조회 1,497
14년 전 조회 2,411
14년 전 조회 2,149
14년 전 조회 2,765
14년 전 조회 1,473
14년 전 조회 1,344
14년 전 조회 2,716
14년 전 조회 1,368
14년 전 조회 1,485
14년 전 조회 2,622
14년 전 조회 1,559
14년 전 조회 1,562
14년 전 조회 1,270
14년 전 조회 1,532
14년 전 조회 2,541
14년 전 조회 1,088
14년 전 조회 3,100
14년 전 조회 1,409
14년 전 조회 1,127
14년 전 조회 1,093
14년 전 조회 1,396
14년 전 조회 1,296
14년 전 조회 1,203
14년 전 조회 1,695
14년 전 조회 1,130
14년 전 조회 1,758
14년 전 조회 2,164
14년 전 조회 1,114
14년 전 조회 1,236
14년 전 조회 1,081
14년 전 조회 1,254
14년 전 조회 1,667
14년 전 조회 1,367
14년 전 조회 1,515
14년 전 조회 1,305
14년 전 조회 1,494
14년 전 조회 1,053
14년 전 조회 1,919
14년 전 조회 1,259
14년 전 조회 2,000
14년 전 조회 8,772
14년 전 조회 1,346
14년 전 조회 2,185
14년 전 조회 1,962
14년 전 조회 2,222
14년 전 조회 2,561
14년 전 조회 1,153
14년 전 조회 1,289
14년 전 조회 7,089
14년 전 조회 1,252
14년 전 조회 1,164
14년 전 조회 2,383
14년 전 조회 1,254
14년 전 조회 1,221
14년 전 조회 2,715
14년 전 조회 1,304
14년 전 조회 4,240
14년 전 조회 4,373
14년 전 조회 1,710
14년 전 조회 1,279
14년 전 조회 1,928
14년 전 조회 1,214
14년 전 조회 1,502
14년 전 조회 1,096
14년 전 조회 7,988
14년 전 조회 1,650
14년 전 조회 1,032
14년 전 조회 1,202
14년 전 조회 1,893
14년 전 조회 1,347
14년 전 조회 1,205
14년 전 조회 1,287
14년 전 조회 1,219
14년 전 조회 1,093
14년 전 조회 1,209