php技术
tengju
linux服务器、php、c++
展开
-
php 将中文字符串转成汉语拼音
功能:将中文字符串转换成汉语拼音,支持简体、繁体、中英混合,首字母大写 类库:Pinyin.class.php 用法: $str = '我爱中国'; $pinyin = new Pinyin(); echo $pinyin->get($str); 结果为:Wo Ai Zhong Guo 希望对大家有帮助 类库地址:原创 2016-08-12 18:04:06 · 2173 阅读 · 0 评论 -
php 将中文字符串截取为数组
功能:把中文字符串截取为数组 header("Content-type: text/html; charset=utf-8"); $str = '中国富强'; preg_match_all('/./u', $str, $strs); var_dump(current($strs)); 结果为: array(4) { [0]=> string(3) "中" [1]=> st原创 2016-08-12 17:55:48 · 880 阅读 · 0 评论