PHP关于函数传中文值乱码的有关问题

WBOY
Release: 2016-06-13 13:27:36
Original
1018 people have browsed it

PHP关于函数传中文值乱码的问题
想做一个游戏激活码生成函数,写出来之后发现个问题:$str放中文进去的时候出现乱码,请问该怎么解决一下?

function set_randcode($str, $num, $len, $mark) {
  $strs_shuffle = str_shuffle((str_shuffle(strtoupper(trim($str))) . str_shuffle(strtoupper(trim($str))) . str_shuffle(strtoupper(trim($str)))));
  $code = Array();
  for ($i = 0; $i   $code[] = (substr("$strs_shuffle", mt_rand(0, (strlen($str) - $len)), $len) . $mark . substr("$strs_shuffle", mt_rand(0, (strlen($str) - $len)), $len) . $mark . substr("$strs_shuffle", mt_rand(0, (strlen($str) - $len)), $len) . $mark . substr("$strs_shuffle", mt_rand(0, (strlen($str) - $len)), $len));
  }
  $code = array_unique($code); //移除数组中重复的值
  $set_code = Array();
  for ($j = 0; $j   $set_code[] = $code[$j];
  }
  return $set_code;
}

小弟刚开始学习,希望能讲的浅显易懂些。

------解决方案--------------------
str_shuffle 的作用是将字符串打乱,操作是以字节为单位的
打乱后,原来相邻的字节,可能就不相邻了

一个汉字需要靠相邻的字节来表示,所需字节数依编码定(gbk 2字节、utf-8 3字节、等等)
原来相邻的变成不相邻的了,就出现了“乱码”
------解决方案--------------------
将substr()换成:subCNchar()试试,估计过不了str_shuffle(),建议自己写个重组字符串规则,如随机抽取、加减乘除运算等等;

PHP code

    /** 截取汉字 *
     * $str     要截取的字符串
     * $start   截取的起始位置
     * $length  要截取的长度
     * $charset 字符串编码
     **/
    function subCNchar($str, $start = 0, $length, $charset = "utf-8") {
        if (strlen($str) <font color="#e78608">------解决方案--------------------</font><br>函数前面添加:<br>mb_internal_encoding('GBK');<br>当然不一定是GBK,根据你php文件的字符集修改。<br>再就是生成图片时你加载的字体必须支持中文。
<br><font color="#e78608">------解决方案--------------------</font><br>页面最顶加入header('Content-type: text/html;charset=UTF-8'); <div class="clear">
                 
              
              
        
            </div>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template