php中获取中文首字母程序代码

年会抽奖,要求一等奖的中奖概率是0.12%,二等奖中奖概率是3%,三等奖中奖概率是12%,其他中奖概率是都是谢谢惠顾。

 1 <?php
 2 /**
 3  * 抽奖
 4  * @param int $total
 5  */
 6 function getReward($total=1000)
 7 {
 8     $win1 = floor((0.12*$total)/100);
 9     $win2 = floor((3*$total)/100);
10     $win3 = floor((12*$total)/100);
11     $other = $total-$win1-$win2-$win3;
12     $return = array();
13     for ($i=0;$i<$win1;$i++)
14     {
15         $return[] = 1;
16     }
17     for ($j=0;$j<$win2;$j++)
18     {
19         $return[] = 2;
20     }
21     for ($m=0;$m<$win3;$m++)
22     {
23         $return[] = 3;
24     }
25     for ($n=0;$n<$other;$n++)
26     {
27         $return[] = ‘谢谢惠顾‘;
28     }
29     shuffle($return);
30     return $return[array_rand($return)];
31 }
32
33 $data = getReward();
34 echo $data;
35 ?> 
时间: 2024-10-09 23:04:24

php中获取中文首字母程序代码的相关文章

PHP获取中文首字母函数

function getFirstChar($zh_cn) {     $firsh_zh = mb_substr($zh_cn, 0, 1);     $fchar = ord($firsh_zh{0});     if ($fchar >= ord("A") && $fchar <= ord("z")) {         return strtoupper($firsh_zh{0});     }     $s1 = iconv(&

奔五的人学iOS:用swift实现获取拼音首字母,支持取一句话中每字拼音首字母

在最近一项目中,遇到获取拼音首字母的问题,查找了一下网上的方法,没有找到合适好用的,于是自己研究了一下,写了以下方法,欢迎交流,希望对各位有帮助. // // PYFirst.swift // 获取拼音首字母,支持取一句话中每字拼音首字母 // Created by 周蜜([email protected]) on 2015/6/1(儿童节). // Copyright (c) 2015年 www.miw.cn. All rights reserved. // import Foundation

php按照中文首字母排序

1> 网络上很多php的工具类可以将汉字转为拼音: 2> 将拼音进行排序即可 另一种则是类似mysql转码方式: 1 foreach ($array as $key=>$value) 2 { 3 $new_array[$key] = iconv('UTF-8', 'GBK', $value); 4 } 1 foreach ($array as $key=>$value) 2 { 3 $new_array[$key] = iconv('UTF-8', 'GBK', $value);

php获取汉字首字母

php获取汉字首字母,可以用于按字母对数据进行检索排序等. 分享下网上找的代码.亲测有效. function getFirstCharter($str){ if(empty($str)){return '';} $fchar=ord($str{0}); if($fchar>=ord('A')&&$fchar<=ord('z')) return strtoupper($str{0}); $s1=iconv('UTF-8','gb2312',$str); $s2=iconv('gb

获取汉字首字母

//获取汉字拼音的第一个字母 static public string GetChineseSpell(string strText) { int len = strText.Length; string myStr = ""; for (int i = 0; i < len; i++) { myStr += getSpell(strText.Substring(i, 1)); } return myStr; } static public string[] GetChinese

C#获取字符首字母

///<summary> /// 获取字符首字母 /// </summary> public static string GetPyChar(string c) { if (string.IsNullOrEmpty(c)) { return ""; } byte[] array = new byte[2]; array = Encoding.Default.GetBytes(c); int i = (short)(array[0] - '\0') * 256 +

ASP.NET获取汉字首字母

/// <summary> /// 获取汉字首字母(可包含多个汉字) /// </summary> /// <param name="strText"></param> /// <returns></returns> public string GetChineseSpell(string strText) { int len = strText.Length; string myStr = ""

word2013中取消句首字母自动大写

经常使用word的朋友都知道word中一行的首字母会自动大写,这给用户带来方便的同时,也产生了问题,因为有时候我们并不希望每行开头的首字母大写.要取消首字母自动大写可以取消勾选"首句字母大写"选项,具体见下面(依次点击用红框标记的选项)

//获取拼音首字母

//获取拼音首字母- (NSString *)firstCharactor:(NSString *)aString{    //转成了可变字符串    NSMutableString *str = [NSMutableString stringWithString:aString];    //先转换为带声调的拼音    CFStringTransform((CFMutableStringRef)str,NULL, kCFStringTransformMandarinLatin,NO);