codecamp

mb_str_split()

作用:将字符串分割为数组。 语法: array mb_str_split(string $str[, int $length][, string $charset])

参数:

  • $str 待分割的数组。
  • $length 每一段的字符长度,默认值 1
  • $charset 字符编码,默认 UTF-8

返回值:

  • 分割后的数组。

说明: PHP 的内置函数 str_split() 仅可以分割字母数字,ModPHP 提供的 mb_str_split() 函数是对其的补充,可以用来分割任何指定编码的字符串。

示例:

$a = '你好世界';
print_r(mb_str_split($a)); //将输出 Array([0] => 你, [1] => 好, [2] => 世, [3] => 界)
print_r(mb_str_split($a, 2)); //将输出 Array([0] => 你好, [1] => 世界)
function_alias()
implode_assoc()
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

挂钩机制

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }