>  기사  >  php教程  >  PHP生成随机中文字符串

PHP生成随机中文字符串

PHP中文网
PHP中文网원래의
2016-05-24 09:12:031432검색

<?php
function unicode_decode($name) {
     
    // 转换编码,将Unicode编码转换成可以浏览的utf-8编码
    $pattern = &#39;/([\w]+)|(\\\u([\w]{4}))/i&#39;;
    preg_match_all($pattern, $name, $matches);
    if (!empty($matches)) {
        $name = &#39;&#39;;
        for ($j = 0; $j < count($matches[0]); $j++) {
            $str = $matches[0][$j];
            if (strpos($str, &#39;\\u&#39;) === 0) {
                $code = base_convert(substr($str, 2, 2), 16, 10);
                $code2 = base_convert(substr($str, 4), 16, 10);
                $c = chr($code) . chr($code2);
                $c = iconv(&#39;UCS-2&#39;, &#39;UTF-8&#39;, $c);
                $name.= $c;
            } else {
                $name.= $str;
            }
        }
    }
    return $name;
}
if ($_SERVER[&#39;REQUEST_METHOD&#39;] == &#39;POST&#39;) {
} else {
    $str = "";
    for ($i = 0; $i < 100; $i++) {
        $str.= "\\u" . dechex(rand(19968, 40895));
    }
    $content.= unicode_decode($str);
}
?>
<!DOCTYPE>
<html>
    <head>
        <title>blog</title>
    </head>
    <body>
        <span><?php
echo $_COOKIE["uid"] ?></span>
        <form action="<?php
htmlspecialchars($_SERVER[&#39;PHP_SELF&#39;]) ?>" method="post" accept-charset="utf-8">
            <input type="text" name="title">
            <br>
            <textarea name="content" id="" cols="30" rows="10"><?php
echo $content; ?></textarea>
            <br>
            <input type="submit" name=&#39;submit&#39;>
        </form>
    </body>
</html>

                       


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.