Home php教程 PHP源码 PHP生成随机中文字符串

PHP生成随机中文字符串

May 24, 2016 am 09:12 AM

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

<?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>

Copy after login

                       


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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)