<?php
header("content-type:text/html;charset=utf-8");
$s="這是我的技術部落格,歡迎多多來訪!";
function
str_rev
($str)
//用mb_strlen函獲取算utf8字串的長度
$length=mb_strlen($str,"utf-8");
//宣告乙個陣列備用
$arr=array();
//將字串拆開放入陣列
for($i=0;$i
<$length;$i++)
//將陣列按鍵名大小反轉
krsort($arr);
//將陣列中單個字元元素重新組合成字串
$str=implode("",$arr);
//將翻轉後的字串返回
return
$str;
}echo
$s."
"; echo str_rev($s);
/* 得到結果:
* 這是我的技術部落格,歡迎多多來訪!
* !訪來多多迎歡,客博術技的我是這
*/?>
C 判斷中文字元(字串)
it168技術文件 在unicode 字串中,中文的範圍是在4e00.9fff cjk unified ideographs。通過對字元的unicode編碼進行判斷來確定字元是否為中文。protected bool ischineseletter string input,intindex else...
C 判斷中文字元(字串)
方法一 原文 在unicode 字串中,中文的範圍是在4e00.9fff cjk unified ideographs。通過對字元的unicode編碼進行判斷來確定字元是否為中文。protected bool ischineseletter string input,int index else r...
C 判斷中文字元(字串)
在unicode 字串中,中文的範圍是在4e00.9fff cjk unified ideographs。通過對字元的unicode編碼進行判斷來確定字元是否為中文。protected bool ischineseletter string input,int index else return f...