Multibyte String 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程

mb_split

(PHP 4 >= 4.2.0, PHP 5)

mb_splitSplit multibyte string using regular expression

说明

array mb_split ( string $pattern , string $string [, int $limit=-1 ] )

Split a multibyte string using regular expression pattern and returns the result as an array.

参数

pattern

The regular expression pattern.

string

The string being split.

limit
If optional parameter limit is specified, it will be split in limit elements as maximum.

返回值

The result as an array.

注释

Note: The internal encoding or the character encoding specified by mb_regex_encoding() will be used as the character encoding for this function.

参见


Multibyte String 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程