This article mainly introduces the method of getting the first letter of a string in php, supports the operation of Chinese strings, and involves the operation of strings in php The skills have certain reference value. Friends in need can refer to it
The example in this article describes how to obtain the first letter of a string in PHP. Share it with everyone for your reference. The specific implementation method is as follows:
?
|
<🎜>$limit = array( //gb2312 Pinyin sorting<🎜>
<🎜>array(45217,45252), //A<🎜>
<🎜>array(45253,45760), //B<🎜>
<🎜>array(45761,46317), //C<🎜>
<🎜>array(46318,46825), //D<🎜>
<🎜>array(46826,47009), //E<🎜>
<🎜>array(47010,47296), //F<🎜>
<🎜>array(47297,47613), //G<🎜>
<🎜>array(47614,48118), //H<🎜>
<🎜>array(0,0), //I<🎜>
<🎜>array(48119,49061), //J<🎜>
<🎜>array(49062,49323), //K<🎜>
<🎜>array(49324,49895), //L<🎜>
<🎜>array(49896,50370), //M<🎜>
<🎜>array(50371,50613), //N<🎜>
<🎜>array(50614,50621), //O<🎜>
<🎜>array(50622,50905), //P<🎜>
<🎜>array(50906,51386), //Q<🎜>
<🎜>array(51387,51445), //R<🎜>
<🎜>array(51446,52217), //S<🎜>
<🎜>array(52218,52697), //T<🎜>
<🎜>array(0,0), //U<🎜>
<🎜>array(0,0), //V<🎜>
<🎜>array(52698,52979), //W<🎜>
<🎜>array(52980,53688), //X<🎜>
<🎜>array(53689,54480), //Y<🎜>
<🎜>array(54481,55289), //Z<🎜>
<🎜>);<🎜>
<🎜>$str="A: This is a test program 1";<🎜>
<🎜>$str= iconv("UTF-8","gb2312", $str);<🎜>
<🎜>echo $str."";
$i=0;
while($i |
I hope this article will be helpful to everyone’s PHP programming design.