str_replace함수는 ASP의 Replace와 같은 역활을 하는데
사용법은
str_replace("찾을문자열","변경할문자열","문자열 원본")
예) $string ="This is a BIG test with SMALL RESULT";
echo str_replace("BIG","SMALL",$string);
결과값: This is a SMALL test with SMALL RESULT
원본 위치만다르고 쓰는 방식은 같다.
특이한 것은 strtr함수인데
이것은 1:1 바꿔주는 역활을 하는 함수이다.
사용법은
strtr("문자열","변경할문자열","변경할 문자열")
예)$string ="This is a BIG test with SMALL RESULT";
echo strtr($string,"BIG","SMALL");
결과값: This is a SMA test with SMALL RESULT
변경할 문자열의 length만큼 바뀌는 성실이 있다.
만약 다음 처럼 한다면
$string ="This is a big test with small result";
echo strtr($string,"big","small");
결과값:Thms ms a sma test wmth small result
보는 봐와 같이 b -> s, i -> m, g -> a로
치환이 되어 버린다. 이것을 str_replace처럼 쓰고 싶으면 배열을 이용해서 사용해도 된다.