php取出字符串(包括汉字)首字母函数

?php//取出首字母函数function getfirstchar($s0){ if(ord($s0)=1 and ord($s0)=ord(z) ) { return strtoupper($s0); } //$s=iconv(UTF-8,gb2312, $s0); 如果需要转换为utf-8的话$s=$s0;//无需转换的情况$asc=ord($s{0})*256+ord($s{1})-65536; if($asc=-203
<?php
//取出首字母函数

function getfirstchar($s0){ 
if(ord($s0)>="1" and ord($s0)<=ord("z") )   { return strtoupper($s0); } 
//$s=iconv("UTF-8","gb2312", $s0); 如果需要转换为utf-8的话
$s=$s0;//无需转换的情况
$asc=ord($s{0})*256+ord($s{1})-65536; 
if($asc>=-20319 and $asc<=-20284)return "A"; 
if($asc>=-20283 and $asc<=-19776)return "B"; 
if($asc>=-19775 and $asc<=-19219)return "C"; 
if($asc>=-19218 and $asc<=-18711)return "D"; 
if($asc>=-18710 and $asc<=-18527)return "E"; 
if($asc>=-18526 and $asc<=-18240)return "F"; 
if($asc>=-18239 and $asc<=-17923)return "G"; 
if($asc>=-17922 and $asc<=-17418)return "H";               
if($asc>=-17417 and $asc<=-16475)return "J";               
if($asc>=-16474 and $asc<=-16213)return "K";               
if($asc>=-16212 and $asc<=-15641)return "L";               
if($asc>=-15640 and $asc<=-15166)return "M";               
if($asc>=-15165 and $asc<=-14923)return "N";               
if($asc>=-14922 and $asc<=-14915)return "O";               
if($asc>=-14914 and $asc<=-14631)return "P";               
if($asc>=-14630 and $asc<=-14150)return "Q";               
if($asc>=-14149 and $asc<=-14091)return "R";               
if($asc>=-14090 and $asc<=-13319)return "S";               
if($asc>=-13318 and $asc<=-12839)return "T";               
if($asc>=-12838 and $asc<=-12557)return "W";               
if($asc>=-12556 and $asc<=-11848)return "X";               
if($asc>=-11847 and $asc<=-11056)return "Y";               
if($asc>=-11055 and $asc<=-10247)return "Z";   
return 0; 
}
echo getfirstchar("你好");

?>

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

今天在用php进行图片保存输出时候,图片一直显示错误,后面用调试模式下提示:Warning: Cannot modify header information - headers already sent by... 看了一些网上的方法也没解决,最后在php.ini配置output_buffering默认为4096就没有遇到这个错误了: o
ob_start()函数用于打开缓冲区,比如header()函数之前如果就有输出,包括回车/空格/换行/都会有Header had all ready send by的错误,这时可以先用ob_start()打开缓冲区PHP代码的数据块和echo()输出都会进入缓冲区而不会立刻输出.当然打开缓冲区的作用很多,只要
第一种方法:用php的strpos() 函数判断字符串中是否包含某字符串的方法 if(strpos(www.genban.org,genban) !== false){ echo 包含genban; }else{ echo 不包含genban; } 第二种 使用了explode 用explode进行判断PHP判断字符串的包含代码如下: ?php $name = 00
/u 表示按unicode(utf-8)匹配(主要针对多字节比如汉字) /i 表示不区分大小写(如果表达式里面有 a, 那么 A 也是匹配对象) /s 表示将字符串视为单行来匹配
随机生成难点是在于如何避免碰撞,有人说用md5,GUID这些机制啊,当然可以,但是做为账号,看着有乱,而且生成位数也过长。 本方法只需要解决1秒内的并发碰撞就可以,因为固定头部采用的是unixtime时间,精确到秒,超过1秒,这个头部的时间肯定变化了。同时
1、用正则表达式判断 input type=text id=name placeholder=请输入用户名 value= onblur=CheckChinese(name,this.value) class=form-control function CheckIsChinese(obj,val){ var reg = new RegExp([\\u4E00-\\u9FFF]+,g); if(reg.test(val)){alert(包含