PHP에서 중국어 콜론을 바꾸는 방법: 1. str_ireplace() 함수를 사용하고 "str_ireplace(중국어 콜론, 대체 값, $str)" 구문을 사용합니다. 2. str_replace() 함수를 사용하고 "str_replace(중국어 콜론, 대체 값)을 사용합니다. , $str)".
이 튜토리얼의 운영 환경: Windows 7 시스템, PHP 버전 7.1, DELL G3 컴퓨터
PHP에서는 str_ireplace() 및 str_replace() 함수를 사용하여 문자열의 중국어 콜론을 바꿀 수 있습니다.
str_ireplace() 및 str_replace는 새 문자열을 사용하여 원래 문자열에 지정된 특정 문자열을 대체합니다. str_replace는 대소문자를 구분하지만 str_ireplace()는 대소문자를 구분하지 않습니다.
str_ireplace() 구문은 다음과 같습니다.
mixed str_ireplace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] ) mixed str_replace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] )
이 두 함수는 문자열 또는 배열을 반환합니다. 이 문자열 또는 배열은 제목의 모든 검색을 바꾸기로 바꾼 결과입니다. 매개변수 개수는 교체를 수행하는 횟수를 나타냅니다.
사용 예는 다음과 같습니다.
<?php header("content-type:text/html;charset=utf-8"); $str = 'hello:world:hello:world'; echo "原字符串: ".$str."<br>"; $replace = '-'; $search = ':'; echo str_replace($search, $replace, $str)."<br>"; echo str_ireplace($search, $replace, $str); ?>
추천 학습: "PHP Video Tutorial"
위 내용은 PHP에서 중국어 콜론을 바꾸는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!