亚洲最大看欧美片,亚洲图揄拍自拍另类图片,欧美精品v国产精品v呦,日本在线精品视频免费

  • 站長資訊網(wǎng)
    最全最豐富的資訊網(wǎng)站

    php 漢字字符串怎么轉(zhuǎn)數(shù)組

    php漢字字符串轉(zhuǎn)數(shù)組的方法:首先創(chuàng)建一個(gè)PHP示例文件;然后定義一個(gè)漢字字符串;最后通過“mb_strlen($topictitle, 'utf-8');”等方法將漢字字符串轉(zhuǎn)為數(shù)組即可。

    php 漢字字符串怎么轉(zhuǎn)數(shù)組

    本文操作環(huán)境:Windows7系統(tǒng)、PHP7.1版,DELL G3電腦

    php 漢字字符串怎么轉(zhuǎn)數(shù)組?

    php 漢字字符串轉(zhuǎn)為數(shù)組[]

    代碼:

    $topictitle="沙漠駱駝"; $length = mb_strlen($topictitle, 'utf-8'); $titlearray = []; for ($i=0; $i<$length; $i++)   { $titlearray[] = mb_substr($topictitle, $i, 1, 'utf-8');     }   return $titlearray;

    效果:

    php 漢字字符串怎么轉(zhuǎn)數(shù)組

    推薦學(xué)習(xí):《PHP視頻教程》

    贊(0)
    分享到: 更多 (0)
    網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)