update : 2015.11.03
php.shukuma.com

검색:
 
 
Replace regular expression with multibyte support ignoring case

mb_eregi_replace

(PHP 4 >= 4.2.0, PHP 5)

mb_eregi_replaceReplace regular expression with multibyte support ignoring case

설명

string mb_eregi_replace ( string $pattern , string $replace , string $string [, string $option = "msri" ] )

Scans string for matches to pattern, then replaces the matched text with replacement.

인수

pattern

The regular expression pattern. Multibyte characters may be used. The case will be ignored.

replace

The replacement text.

string

The searched string.

option
option has the same meaning as in mb_ereg_replace().

반환값

The resultant string or FALSE on error.

주의

Note:

내부 인코딩이나 mb_regex_encoding()으로 정의한 문자 인코딩을 이 함수의 문자 인코딩으로 사용할 수 있습니다.

Warning

신뢰할 수 없는 입력에 대해서 e 변경자를 사용하지 마십시오. 자동 회피를 수행하지 않습니다. (preg_replace()와 마찬가지) 주의하지 않으면 원격 코드 실행 취약점을 가지게 됩니다.

참고