/**
* 1. strtr은 지정된 문자를 변환합니다.
*
* string strtr ( string $str , string $from , string $to )
* string strtr ( string $str , array $replace_pairs )
*
* 이 함수는 str의 복사본을 반환하고 from에 지정된 문자를 to에 해당하는 문자로 변환합니다.
* from과 to의 길이가 같지 않으면 추가 문자는 무시됩니다.
*/
$str = 'http://flyer0126.iteye.com/';
echo strtr($str, 'IT', 'java');
//output: http://flyer0126.iteye.com/ strtr은 대소문자를 구분합니다
//from과 to의 길이가 같지 않으면 추가 문자는 무시됩니다.
echo strtr($str, 'it', 'java');
//output: haap://flyer0126.jaeye.com/
//iteye --> jaeye로만 대체됩니다
//http - -> haap은 해당 위치를 문자별로 대체하는데, 이는 원래 의도에 맞지 않습니다
echo strtr($str, 'it', '');
//output: http://flyer0126.iteye.com/ 대체 없음
echo strtr($str, 'it', ' ');
//output: http://flyer0126.teye.com/은
/**
* 함수 strtr의 from->to 메소드 요약:
* 1. 대소문자를 구분합니다.
* 2. 형식과 to가 같지 않은 경우 길이, 중복 문자는 무시되며 더 많은 문자로 대체할 수 없습니다.
* 3. 해당 위치를 문자별로 대체합니다.
* 4. 공백으로 대체할 수 없습니다. , 공백으로 바꿀 수 있습니다.
*/