mb_ereg_match
(PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8)
mb_ereg_match — Regular expression match for multibyte string
說明
mb_ereg_match(string
$pattern, string $string, ?string $options = null): boolA regular expression match for a multibyte string
注意:
patternis only matched at the beginning ofstring.
參數
-
pattern -
The regular expression pattern.
-
string -
The string being evaluated.
-
options -
The search option. See mb_regex_set_options() for explanation.
返回值
Returns true if
string matches the regular expression
pattern, false if not.
更新日誌
| 版本 | 說明 |
|---|---|
| 8.0.0 |
options is nullable now.
|
註釋
注意:
mb_regex_encoding() 指定的內部編碼或字元編碼將會當作此函式用的字元編碼。
參見
- mb_regex_encoding() - Set/Get character encoding for multibyte regex
- mb_ereg() - Regular expression match with multibyte support