PHP按字符串长度瓜分成数组,支持中文

WBOY
Release: 2016-06-13 12:09:56
Original
1036 people have browsed it

PHP按字符串长度分割成数组,支持中文

?

/** * 将unicode字符串按传入长度分割成数组 * @param  string  $str 传入字符串 * @param  integer $l   字符串长度 * @return mixed      数组或false */ function str_split_unicode($str, $l = 0) {    if ($l > 0) {        $ret = array();        $len = mb_strlen($str, "UTF-8");        for ($i = 0; $i <p>?</p><pre name="code" class="php"><?php function str_split_unicode($str, $l = 0) {     if ($l > 0) {         $ret = array();         $len = mb_strlen($str, "UTF-8");         for ($i = 0; $i  $s = "还未如愿sss见gfg者不rtret不朽"; // Mild milk print_r(str_split($s, 5)); print_r(str_split_unicode($s, 5)); //输出 //Array ( [0] => 还?? [1] => ?如? [2] => ??sss [3] => 见gf [4] => g者? [5] => ??rtr [6] => et不 [7] => 朽 ) //Array ( [0] => 还未如愿s [1] => ss见gf [2] => g者不rt [3] => ret不朽 )
Copy after login

?

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template