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

문자열 치환함수인데요....
 
 
아래의 소스대로 하면,
 
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년 전 조회 929
14년 전 조회 1,332
14년 전 조회 2,613
14년 전 조회 2,059
14년 전 조회 1,896
14년 전 조회 3,394
14년 전 조회 2,434
14년 전 조회 1,384
14년 전 조회 1,426
14년 전 조회 1,407
14년 전 조회 1,534
14년 전 조회 984
14년 전 조회 1,293
14년 전 조회 1,426
14년 전 조회 3,021
14년 전 조회 1,311
14년 전 조회 1,047
14년 전 조회 1,048
14년 전 조회 3,386
14년 전 조회 1,169
14년 전 조회 1,885
14년 전 조회 1,993
14년 전 조회 1,090
14년 전 조회 1,794
14년 전 조회 1,187
14년 전 조회 1,332
14년 전 조회 2,266
14년 전 조회 2,051
14년 전 조회 2,608
14년 전 조회 1,313
14년 전 조회 1,186
14년 전 조회 2,568
14년 전 조회 1,210
14년 전 조회 1,311
14년 전 조회 2,518
14년 전 조회 1,418
14년 전 조회 1,402
14년 전 조회 1,106
14년 전 조회 1,373
14년 전 조회 2,392
14년 전 조회 941
14년 전 조회 2,945
14년 전 조회 1,262
14년 전 조회 981
14년 전 조회 945
14년 전 조회 1,231
14년 전 조회 1,144
14년 전 조회 1,060
14년 전 조회 1,536
14년 전 조회 975
14년 전 조회 1,604
14년 전 조회 2,016
14년 전 조회 954
14년 전 조회 1,090
14년 전 조회 924
14년 전 조회 1,093
14년 전 조회 1,513
14년 전 조회 1,219
14년 전 조회 1,361
14년 전 조회 1,152
14년 전 조회 1,342
14년 전 조회 904
14년 전 조회 1,735
14년 전 조회 1,088
14년 전 조회 1,909
14년 전 조회 8,663
14년 전 조회 1,202
14년 전 조회 2,025
14년 전 조회 1,798
14년 전 조회 2,059
14년 전 조회 2,466
14년 전 조회 994
14년 전 조회 1,132
14년 전 조회 6,917
14년 전 조회 1,096
14년 전 조회 1,016
14년 전 조회 2,200
14년 전 조회 1,094
14년 전 조회 1,064
14년 전 조회 2,565
14년 전 조회 1,150
14년 전 조회 4,152
14년 전 조회 4,287
14년 전 조회 1,563
14년 전 조회 1,134
14년 전 조회 1,785
14년 전 조회 1,065
14년 전 조회 1,350
14년 전 조회 951
14년 전 조회 7,882
14년 전 조회 1,489
14년 전 조회 877
14년 전 조회 1,050
14년 전 조회 1,733
14년 전 조회 1,185
14년 전 조회 1,031
14년 전 조회 1,118
14년 전 조회 1,070
14년 전 조회 923
14년 전 조회 1,061