Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP의 str_ireplace() 함수

<시간/>

str_ireplace() 함수는 문자를 다른 문자로 교체하는 데 사용됩니다.

참고 − 함수는 대소문자를 구분하지 않습니다.

구문

str_ireplace(find,replace,str,count)

매개변수

  • 찾다 − 검색할 값

  • 교체 − find의 값을 대체할 값

  • 문자열 - 검색할 문자열

  • 카운트 - 교체 횟수

반환

str_ireplace() 함수는 대체된 값으로 문자열이나 배열을 반환합니다.

다음은 예입니다 -

예시

<?php
$str = "I am Amit";
$res = str_ireplace("Amit", "David", $str);
echo $res;
?>

다음은 출력입니다 -

출력

I am David

다른 예를 살펴보겠습니다 -

예시

<?php
$myArr = array("one","two","three");
print_r(str_ireplace("three","four",$myArr,$c));
echo "<br>" . "Number of Replacements = $c";
?>

다음은 출력입니다 -

출력

Array
(
   [0] => one
   [1] => two
   [2] => four
)
Number of Replacements = 1