반응형

PHP / str_replace() - 문자열의 특정 문구 치환

 

str_replace()

특정 문자를 다른 문자로 바꾸거나 제거하는 함수입니다. 

 str_replace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] ) 

$search : 변경대상 문자
$replace : 변경하려는 문자
$subject : 변수, replace가 바꾸고자 하는 문자열(변수수)

예제

<?php
	$txt = "hello world!";   
    $result = str_replace('!' , '##', $txt);
    echo "변경 전 문자열 : ".$txt."<br>";  // hello world!
    echo "변경 후 문자열 : ".$result;      // hello world##
?>
반응형

+ Recent posts