(PHP 4 >= 4.2.0, PHP 5, PHP 7)
mb_ereg_replace — Replace regular expression with multibyte support
$pattern
, string $replacement
, string $string
[, string $option
= "msr"
] )
Scans string
for matches to
pattern
, then replaces the matched text
with replacement
pattern
The regular expression pattern.
Multibyte characters may be used in pattern
.
replacement
The replacement text.
string
The string being checked.
option
option
parameter. If i is specified for this
parameter, the case will be ignored. If x is
specified, white space will be ignored. If m
is specified, match will be executed in multiline mode and line
break will be included in '.'. If p is
specified, match will be executed in POSIX mode, line break
will be considered as normal character. If e
is specified, replacement
string will be
evaluated as PHP expression.
The resultant string on success, or FALSE
on error.
버전 | 설명 |
---|---|
7.1.0 | The e modifier has been deprecated. |
Note:
내부 인코딩이나 mb_regex_encoding()으로 정의한 문자 인코딩을 이 함수의 문자 인코딩으로 사용할 수 있습니다.
신뢰할 수 없는 입력에 대해서 e 변경자를 사용하지 마십시오. 자동 회피를 수행하지 않습니다. (preg_replace()와 마찬가지) 주의하지 않으면 원격 코드 실행 취약점을 가지게 됩니다.